xref: /aosp_15_r20/external/bazelbuild-rules_python/examples/bzlmod/tests/other_module/BUILD.bazel (revision 60517a1edbc8ecf509223e9af94a7adec7d736b8)
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