aboutsummaryrefslogtreecommitdiff
path: root/bootstrap/unit_test
diff options
context:
space:
mode:
authorBrad Richardson <everythingfunctional@protonmail.com>2020-10-14 10:53:18 -0500
committerBrad Richardson <everythingfunctional@protonmail.com>2020-10-14 10:53:18 -0500
commit3b99bdf29c1ce031db897f142feb680bc8e9b040 (patch)
treef641913549926c4714993ef447e3a7580cda3e42 /bootstrap/unit_test
parentb5b16cf826d468e79b4087500192a4a9e07c140f (diff)
downloadfpm-3b99bdf29c1ce031db897f142feb680bc8e9b040.tar.gz
fpm-3b99bdf29c1ce031db897f142feb680bc8e9b040.zip
stub out a unit test
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 #-}