xref: /aosp_15_r20/external/bazelbuild-rules_go/tests/bcr/runfiles/BUILD.bazel (revision 9bb1b549b6a84214c53be0924760be030e66b93a)
1*9bb1b549SSpandan Dasload("@my_rules_go//go:def.bzl", "go_test")
2*9bb1b549SSpandan Das
3*9bb1b549SSpandan Dasgo_test(
4*9bb1b549SSpandan Das    name = "runfiles_test",
5*9bb1b549SSpandan Das    srcs = ["runfiles_test.go"],
6*9bb1b549SSpandan Das    args = ["$(rlocationpath @other_module//:bar.txt)"],
7*9bb1b549SSpandan Das    data = ["@other_module//:bar.txt"],
8*9bb1b549SSpandan Das    deps = ["@my_rules_go//go/runfiles"],
9*9bb1b549SSpandan Das)
10