about summary refs log tree commit diff
path: root/third_party/bazel/rules_haskell/tests/binary-simple/BUILD.bazel
blob: d44d395fb8c79459f07b0dc3755c7dbd1ed02dc3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
load(
    "@io_tweag_rules_haskell//haskell:haskell.bzl",
    "haskell_test",
)

package(default_testonly = 1)

haskell_test(
    name = "binary-simple",
    srcs = ["Main.hs"],
    expected_covered_expressions_percentage = 100,
    tags = ["coverage-compatible"],
    visibility = ["//visibility:public"],
    deps = ["//tests/hackage:base"],
)