mirror of
https://github.com/bazel-contrib/bazel-lib
synced 2024-12-04 14:02:23 +00:00
14 lines
296 B
Python
14 lines
296 B
Python
load("//lib:testing.bzl", "assert_archive_contains")
|
|
|
|
assert_archive_contains(
|
|
name = "check_zip",
|
|
archive = "bazel_runfiles.whl",
|
|
expected = "expected_wheel.txt",
|
|
)
|
|
|
|
assert_archive_contains(
|
|
name = "check_tar",
|
|
archive = "lib_tests.tar",
|
|
expected = "expected_tar.txt",
|
|
)
|