2021-05-24 00:11:58 +03:00
|
|
|
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
2021-05-24 00:11:58 +03:00
|
|
|
|
|
|
|
go_library(
|
|
|
|
name = "go_default_library",
|
|
|
|
srcs = ["lxcconfig.go"],
|
2021-05-24 00:11:58 +03:00
|
|
|
importpath = "github.com/motiejus/code/undocker/lxcconfig",
|
2021-05-24 00:11:58 +03:00
|
|
|
visibility = ["//visibility:public"],
|
|
|
|
)
|
2021-05-24 00:11:58 +03:00
|
|
|
|
|
|
|
go_test(
|
|
|
|
name = "go_default_test",
|
|
|
|
srcs = ["lxcconfig_test.go"],
|
|
|
|
embed = [":go_default_library"],
|
|
|
|
deps = [
|
|
|
|
"@com_github_stretchr_testify//assert:go_default_library",
|
|
|
|
"@com_github_stretchr_testify//require:go_default_library",
|
|
|
|
],
|
|
|
|
)
|