diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/Spec.hs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/Spec.hs b/test/Spec.hs index fe6f99c..2fd2364 100644 --- a/test/Spec.hs +++ b/test/Spec.hs @@ -9,3 +9,7 @@ main = do testExampleProject :: IO () testExampleProject = withCurrentDirectory "example_project" $ callCommand "stack run -- build" + +testHelloWorld :: IO () +testHelloWorld = + withCurrentDirectory "hello_world" $ callCommand "stack run -- run" |