snix/third_party/bazel/rules_haskell/tests/binary-custom-main/BUILD.bazel

17 lines
365 B
Text

load(
"@io_tweag_rules_haskell//haskell:haskell.bzl",
"haskell_test",
)
package(default_testonly = 1)
haskell_test(
name = "binary-custom-main",
srcs = ["Main.hs"],
expected_covered_expressions_percentage = 50,
tags = [
"coverage-compatible",
],
visibility = ["//visibility:public"],
deps = ["//tests/hackage:base"],
)