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

package(default_testonly = 1)

haskell_test(
    name = "binary-with-main",
    srcs = ["MainIsHere.hs"],
    main_function = "MainIsHere.this",
    visibility = ["//visibility:public"],
    deps = ["//tests/hackage:base"],
)