diff options
Diffstat (limited to 'test/Spec.hs')
-rw-r--r-- | test/Spec.hs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/Spec.hs b/test/Spec.hs index ccb3b24..7aabc09 100644 --- a/test/Spec.hs +++ b/test/Spec.hs @@ -8,6 +8,8 @@ import System.Directory ( withCurrentDirectory ) main :: IO () main = do testExampleProject + testHelloWorld + testHelloComplex testExampleProject :: IO () testExampleProject = @@ -16,3 +18,7 @@ testExampleProject = testHelloWorld :: IO () testHelloWorld = withCurrentDirectory "hello_world" $ start $ Arguments Run False + +testHelloComplex :: IO () +testHelloComplex = + withCurrentDirectory "hello_complex" $ start $ Arguments Test False |