undocker/internal/tartest/BUILD

20 lines
591 B
Python
Raw Normal View History

2021-05-24 00:11:58 +03:00
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "go_default_library",
srcs = ["tartest.go"],
2021-05-24 00:11:58 +03:00
importpath = "git.sr.ht/~motiejus/code/undocker/internal/tartest",
2021-05-24 00:11:58 +03:00
visibility = ["//visibility:public"],
deps = ["@com_github_stretchr_testify//require:go_default_library"],
)
go_test(
name = "go_default_test",
srcs = ["tartest_test.go"],
2021-05-24 00:11:58 +03:00
embed = [":go_default_library"],
2021-05-24 00:11:58 +03:00
deps = [
"@com_github_stretchr_testify//assert:go_default_library",
"@com_github_stretchr_testify//require:go_default_library",
],
2021-05-24 00:11:58 +03:00
)