diff options
author | Ondřej Čertík <ondrej@certik.us> | 2020-02-28 09:16:46 -0800 |
---|---|---|
committer | Ondřej Čertík <ondrej@certik.us> | 2020-02-28 09:16:46 -0800 |
commit | 12020ca91a0adf04c9ba4675e0126f042da4c121 (patch) | |
tree | 257d270bb8f88a45677053e16765819bb65745fd /test | |
parent | 5641e3d44d07c49b8b68786f1b7578f4bbdccc3d (diff) | |
download | fpm-12020ca91a0adf04c9ba4675e0126f042da4c121.tar.gz fpm-12020ca91a0adf04c9ba4675e0126f042da4c121.zip |
Test example_project
Diffstat (limited to 'test')
-rw-r--r-- | test/Spec.hs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/Spec.hs b/test/Spec.hs index a1a07c6..1c9fc48 100644 --- a/test/Spec.hs +++ b/test/Spec.hs @@ -1,4 +1,6 @@ -import Lib (someFunc) +import Lib (someFunc, someFunc2) main :: IO () -main = someFunc +main = do + someFunc + someFunc2 |