diff options
author | Brad Richardson <everythingfunctional@protonmail.com> | 2020-10-14 10:53:18 -0500 |
---|---|---|
committer | Brad Richardson <everythingfunctional@protonmail.com> | 2020-10-14 10:53:18 -0500 |
commit | 3b99bdf29c1ce031db897f142feb680bc8e9b040 (patch) | |
tree | f641913549926c4714993ef447e3a7580cda3e42 /bootstrap/unit_test | |
parent | b5b16cf826d468e79b4087500192a4a9e07c140f (diff) | |
download | fpm-3b99bdf29c1ce031db897f142feb680bc8e9b040.tar.gz fpm-3b99bdf29c1ce031db897f142feb680bc8e9b040.zip |
stub out a unit test
Diffstat (limited to 'bootstrap/unit_test')
-rw-r--r-- | bootstrap/unit_test/SourceConstructionTest.hs | 11 | ||||
-rw-r--r-- | bootstrap/unit_test/Trimmer.hs | 1 |
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 #-} |