• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Tests to verify the root module can interact with the "other_module"
2# submodule.
3#
4# Note that other_module is seen as "our_other_module" due to repo-remapping
5# in the root module.
6
7load("@bazel_skylib//rules:build_test.bzl", "build_test")
8
9build_test(
10    name = "other_module_bin_build_test",
11    targets = [
12        "@our_other_module//other_module/pkg:bin",
13    ],
14)
15