blob: 0cb617a5087777a73265a424ca9db07ead088d75 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
load(
"@io_tweag_rules_haskell//haskell:haskell.bzl",
"haskell_test",
)
package(default_testonly = 1)
haskell_test(
name = "binary-exe-path",
srcs = ["Main.hs"],
visibility = ["//visibility:public"],
deps = ["//tests/hackage:base"],
)
|