1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-11-14 17:13:01 +01:00

chore: Add a bazel test that calls toxic with --help.

This way we at least know it doesn't crash on load. Some code runs. We'll
want some real tests at some point, but this ensures *something* works.
This commit is contained in:
iphydf 2021-11-26 23:57:39 +00:00
parent af70c3d660
commit f39da4d7f2
No known key found for this signature in database
GPG Key ID: 3855DBA2D74403C9

View File

@ -39,3 +39,9 @@ cc_binary(
"//tools/config:osx": [],
}),
)
sh_test(
name = "toxic_test",
srcs = [":toxic"],
args = ["--help"],
)