aboutsummaryrefslogtreecommitdiff
path: root/tests/bcr/runfiles/BUILD.bazel
blob: d86ff26e3c55b141c19e58aaa02ffcd614075f64 (plain)
1
2
3
4
5
6
7
8
9
load("@my_rules_go//go:def.bzl", "go_test")

go_test(
    name = "runfiles_test",
    srcs = ["runfiles_test.go"],
    args = ["$(rlocationpath @other_module//:bar.txt)"],
    data = ["@other_module//:bar.txt"],
    deps = ["@my_rules_go//go/runfiles"],
)