diff options
author | Brad Richardson <brichardson@structint.com> | 2020-05-23 20:43:04 -0700 |
---|---|---|
committer | Brad Richardson <brichardson@structint.com> | 2020-05-23 20:43:04 -0700 |
commit | d89214ba52c968a950dc3118f54b8547350536d9 (patch) | |
tree | 6783b1360272411f8e51aebd6f17678fadc1c23a /test | |
parent | b5a1ada4f24a4334dcaef6d2d8dcfb53e17ecc6c (diff) | |
download | fpm-d89214ba52c968a950dc3118f54b8547350536d9.tar.gz fpm-d89214ba52c968a950dc3118f54b8547350536d9.zip |
Add path dependencies and a test to make sure it works
Diffstat (limited to 'test')
-rw-r--r-- | test/Spec.hs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/Spec.hs b/test/Spec.hs index cd10913..dfa70d6 100644 --- a/test/Spec.hs +++ b/test/Spec.hs @@ -9,6 +9,7 @@ main :: IO () main = do testHelloWorld testHelloComplex + testHelloFpm testHelloWorld :: IO () testHelloWorld = @@ -17,3 +18,7 @@ testHelloWorld = testHelloComplex :: IO () testHelloComplex = withCurrentDirectory "hello_complex" $ start $ Arguments Test False + +testHelloFpm :: IO () +testHelloFpm = + withCurrentDirectory "hello_fpm" $ start $ Arguments Run False |