summaryrefslogtreecommitdiff
path: root/tests/Hakyll/Core/Store/Tests.hs
diff options
context:
space:
mode:
authorJasper Van der Jeugt <m@jaspervdj.be>2016-10-17 11:05:25 +0200
committerJasper Van der Jeugt <m@jaspervdj.be>2016-10-17 11:05:25 +0200
commit2db34f050aa250c4c11a35cb201cc1c7a28d083d (patch)
tree380377956068c0bb0499dc5366249f9e1ff34458 /tests/Hakyll/Core/Store/Tests.hs
parent43e78fcdc755adcac61b3d2f1645037d3eff8fbb (diff)
downloadhakyll-2db34f050aa250c4c11a35cb201cc1c7a28d083d.tar.gz
Move from test-framework to tasty
Diffstat (limited to 'tests/Hakyll/Core/Store/Tests.hs')
-rw-r--r--tests/Hakyll/Core/Store/Tests.hs18
1 files changed, 9 insertions, 9 deletions
diff --git a/tests/Hakyll/Core/Store/Tests.hs b/tests/Hakyll/Core/Store/Tests.hs
index 0aa1aa4..be39ced 100644
--- a/tests/Hakyll/Core/Store/Tests.hs
+++ b/tests/Hakyll/Core/Store/Tests.hs
@@ -6,22 +6,22 @@ module Hakyll.Core.Store.Tests
--------------------------------------------------------------------------------
-import Data.Typeable (typeOf)
-import Test.Framework (Test, testGroup)
-import Test.Framework.Providers.HUnit (testCase)
-import Test.Framework.Providers.QuickCheck2 (testProperty)
-import qualified Test.HUnit as H
-import qualified Test.QuickCheck as Q
-import qualified Test.QuickCheck.Monadic as Q
+import Data.Typeable (typeOf)
+import qualified Test.QuickCheck as Q
+import qualified Test.QuickCheck.Monadic as Q
+import Test.Tasty (TestTree, testGroup)
+import Test.Tasty.HUnit (testCase)
+import qualified Test.Tasty.HUnit as H
+import Test.Tasty.QuickCheck (testProperty)
--------------------------------------------------------------------------------
-import qualified Hakyll.Core.Store as Store
+import qualified Hakyll.Core.Store as Store
import TestSuite.Util
--------------------------------------------------------------------------------
-tests :: Test
+tests :: TestTree
tests = testGroup "Hakyll.Core.Store.Tests"
[ testProperty "simple get . set" simpleSetGet
, testProperty "persistent get . set" persistentSetGet