1load("@io_bazel_rules_go//go:def.bzl", "go_test") 2 3go_test( 4 name = "tests_with_testdata_test", 5 srcs = [ 6 "external_test.go", 7 "internal_test.go", 8 ], 9 _gazelle_imports = ["testing"], 10 data = glob(["testdata/**"]), 11)
View as plain text