aboutsummaryrefslogtreecommitdiff
path: root/bootstrap/unit_test
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap/unit_test')
-rw-r--r--bootstrap/unit_test/SourceConstructionTest.hs11
-rw-r--r--bootstrap/unit_test/Trimmer.hs1
2 files changed, 12 insertions, 0 deletions
diff --git a/bootstrap/unit_test/SourceConstructionTest.hs b/bootstrap/unit_test/SourceConstructionTest.hs
new file mode 100644
index 0000000..a3fdf68
--- /dev/null
+++ b/bootstrap/unit_test/SourceConstructionTest.hs
@@ -0,0 +1,11 @@
+module SourceConstructionTest
+ ( test
+ )
+where
+
+import Hedge ( Test
+ , describe
+ )
+
+test :: IO (Test ())
+test = return $ describe "something" []
diff --git a/bootstrap/unit_test/Trimmer.hs b/bootstrap/unit_test/Trimmer.hs
new file mode 100644
index 0000000..4e0f91d
--- /dev/null
+++ b/bootstrap/unit_test/Trimmer.hs
@@ -0,0 +1 @@
+{-# OPTIONS_GHC -F -pgmF hedge-trimmer #-}