summaryrefslogtreecommitdiff
path: root/tests/TestSuite
diff options
context:
space:
mode:
authorJasper Van der Jeugt <m@jaspervdj.be>2012-10-29 15:01:58 +0100
committerJasper Van der Jeugt <m@jaspervdj.be>2012-10-29 15:01:58 +0100
commite5c97d978bf34bdc98d97bf42ee2be29a5af4242 (patch)
tree723e4e0798d2d0111076cc8ca610c23f009b5e2c /tests/TestSuite
parent5f805f1e32ccbbfc6ac917c8caa1f48382d04101 (diff)
downloadhakyll-e5c97d978bf34bdc98d97bf42ee2be29a5af4242.tar.gz
Pick Store from the develop branch
Diffstat (limited to 'tests/TestSuite')
-rw-r--r--tests/TestSuite/Util.hs5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/TestSuite/Util.hs b/tests/TestSuite/Util.hs
index aa34ab6..4fd87bf 100644
--- a/tests/TestSuite/Util.hs
+++ b/tests/TestSuite/Util.hs
@@ -16,7 +16,8 @@ import Hakyll.Core.Compiler.Internal
import Hakyll.Core.Identifier
import Hakyll.Core.Logger
import Hakyll.Core.Resource.Provider
-import Hakyll.Core.Store
+import Hakyll.Core.Store (Store)
+import qualified Hakyll.Core.Store as Store
fromAssertions :: String -- ^ Name
-> [Assertion] -- ^ Cases
@@ -28,7 +29,7 @@ fromAssertions name = zipWith testCase names
-- | Create a store for testing
--
makeStoreTest :: IO Store
-makeStoreTest = makeStore True "_store"
+makeStoreTest = Store.new True "_store"
-- | Testing for 'runCompilerJob'
--