aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorBrad Richardson <brichardson@structint.com>2020-04-13 19:16:43 -0500
committerBrad Richardson <brichardson@structint.com>2020-04-29 19:08:05 -0700
commiteafba7a95131c34821c7bb725f1e26552c01271b (patch)
tree6a38af171c6dffb67629a1593445480743d989f9 /test
parent32af0dea4bfa1aa30525048ddcd91f74727e2a52 (diff)
downloadfpm-eafba7a95131c34821c7bb725f1e26552c01271b.tar.gz
fpm-eafba7a95131c34821c7bb725f1e26552c01271b.zip
Create simplest possible hello_world project
Diffstat (limited to 'test')
-rw-r--r--test/Spec.hs4
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"