summaryrefslogtreecommitdiff
path: root/tests/main.hs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/main.hs')
-rw-r--r--tests/main.hs22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/main.hs b/tests/main.hs
new file mode 100644
index 0000000..d475fe8
--- /dev/null
+++ b/tests/main.hs
@@ -0,0 +1,22 @@
+{-# LANGUAGE OverloadedStrings #-}
+{-# LANGUAGE NoMonomorphismRestriction #-}
+{-# OPTIONS_GHC -fno-warn-orphans #-}
+
+module Main where
+
+import Import
+import Settings
+import Yesod.Logger (defaultDevelopmentLogger)
+import Yesod.Default.Config
+import Yesod.Test
+import Application (makeFoundation)
+
+import HomeTest
+
+main :: IO a
+main = do
+ conf <- loadConfig $ (configSettings Testing) { csParseExtra = parseExtra }
+ logger <- defaultDevelopmentLogger
+ foundation <- makeFoundation conf logger
+ app <- toWaiAppPlain foundation
+ runTests app (connPool foundation) homeSpecs