about summary refs log tree commit diff
path: root/third_party/bazel/rules_haskell/tests/encoding/BUILD.bazel
blob: 588d13f6d0b71a4126741a88745b9a1119fefc5c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
load(
    "@io_tweag_rules_haskell//haskell:haskell.bzl",
    "haskell_test",
)

package(default_testonly = 1)

haskell_test(
    name = "encoding",
    srcs = [
        "Main.hs",
        "TH.hs",
    ],
    extra_srcs = [
        "unicode.txt",
    ],
    deps = [
        "//tests/hackage:base",
        "//tests/hackage:template-haskell",
    ],
)