about summary refs log tree commit diff
path: root/third_party/bazel/rules_haskell/tests/binary-with-import/BUILD.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/bazel/rules_haskell/tests/binary-with-import/BUILD.bazel')
-rw-r--r--third_party/bazel/rules_haskell/tests/binary-with-import/BUILD.bazel26
1 files changed, 0 insertions, 26 deletions
diff --git a/third_party/bazel/rules_haskell/tests/binary-with-import/BUILD.bazel b/third_party/bazel/rules_haskell/tests/binary-with-import/BUILD.bazel
deleted file mode 100644
index 3b920d37c4..0000000000
--- a/third_party/bazel/rules_haskell/tests/binary-with-import/BUILD.bazel
+++ /dev/null
@@ -1,26 +0,0 @@
-load(
-    "@io_tweag_rules_haskell//haskell:haskell.bzl",
-    "haskell_library",
-    "haskell_test",
-)
-
-package(default_testonly = 1)
-
-haskell_library(
-    name = "lib",
-    srcs = ["src/Lib.hs"],
-    deps = [
-        "//tests/hackage:base",
-        "//tests/hackage:transformers",
-    ],
-)
-
-haskell_test(
-    name = "binary-with-import",
-    srcs = ["Main.hs"],
-    visibility = ["//visibility:public"],
-    deps = [
-        ":lib",
-        "//tests/hackage:base",
-    ],
-)