xref: /aosp_15_r20/external/bazelbuild-rules_rust/test/bzl_version/BUILD.bazel (revision d4726bddaa87cc4778e7472feed243fa4b6c267f)
1*d4726bddSHONG Yifanload("//:version.bzl", "VERSION")
2*d4726bddSHONG Yifanload("//rust:defs.bzl", "rust_test")
3*d4726bddSHONG Yifan
4*d4726bddSHONG Yifanrust_test(
5*d4726bddSHONG Yifan    name = "bzl_version_test",
6*d4726bddSHONG Yifan    srcs = ["bzl_version_test.rs"],
7*d4726bddSHONG Yifan    data = [
8*d4726bddSHONG Yifan        "//:MODULE.bazel",
9*d4726bddSHONG Yifan    ],
10*d4726bddSHONG Yifan    edition = "2021",
11*d4726bddSHONG Yifan    env = {
12*d4726bddSHONG Yifan        "MODULE_BAZEL": "$(rlocationpath //:MODULE.bazel)",
13*d4726bddSHONG Yifan        "VERSION": VERSION,
14*d4726bddSHONG Yifan    },
15*d4726bddSHONG Yifan    deps = [
16*d4726bddSHONG Yifan        "//tools/runfiles",
17*d4726bddSHONG Yifan    ],
18*d4726bddSHONG Yifan)
19