summaryrefslogtreecommitdiff
path: root/tests/Hakyll/Core/DirectedGraph
diff options
context:
space:
mode:
authorJasper Van der Jeugt <jaspervdj@gmail.com>2010-12-23 17:19:21 +0100
committerJasper Van der Jeugt <jaspervdj@gmail.com>2010-12-23 17:19:21 +0100
commit3fdf8ab204cfc6f60a250b8ef0cccce8e82a4bcf (patch)
tree186ec661858a8f9bf25ca5711cee77e091a27010 /tests/Hakyll/Core/DirectedGraph
parentd1d28b9349549297f89ade80616eb7b14083e600 (diff)
downloadhakyll-3fdf8ab204cfc6f60a250b8ef0cccce8e82a4bcf.tar.gz
Add identifier/pattern modules
Diffstat (limited to 'tests/Hakyll/Core/DirectedGraph')
-rw-r--r--tests/Hakyll/Core/DirectedGraph/Tests.hs24
1 files changed, 12 insertions, 12 deletions
diff --git a/tests/Hakyll/Core/DirectedGraph/Tests.hs b/tests/Hakyll/Core/DirectedGraph/Tests.hs
index 4ce5944..1a9b406 100644
--- a/tests/Hakyll/Core/DirectedGraph/Tests.hs
+++ b/tests/Hakyll/Core/DirectedGraph/Tests.hs
@@ -15,9 +15,9 @@ import Hakyll.Core.DirectedGraph.ObsoleteFilter
tests :: [Test]
tests =
- [ testCase "solveDependencies01" solveDependencies01
- , testCase "filterObsolete01" filterObsolete01
- , testCase "filterObsolete02" filterObsolete02
+ [ testCase "solveDependencies [1]" solveDependencies1
+ , testCase "filterObsolete [1]" filterObsolete1
+ , testCase "filterObsolete [2]" filterObsolete2
]
node :: Ord a => a -> [a] -> (a, Set a)
@@ -32,17 +32,17 @@ testGraph01 = fromList
, node 3 []
]
-solveDependencies01 :: Assertion
-solveDependencies01 = result == [3, 4, 2, 6, 8] || result == [3, 4, 2, 6, 8]
- @? "solveDependencies01"
+solveDependencies1 :: Assertion
+solveDependencies1 = result == [3, 4, 2, 6, 8] || result == [3, 4, 2, 6, 8]
+ @? "solveDependencies1"
where
result = solveDependencies testGraph01
-filterObsolete01 :: Assertion
-filterObsolete01 = nodes (filterObsolete [6] testGraph01) == S.fromList [6, 8]
- @? "filterObsolete01"
+filterObsolete1 :: Assertion
+filterObsolete1 = nodes (filterObsolete [6] testGraph01) == S.fromList [6, 8]
+ @? "filterObsolete1"
-filterObsolete02 :: Assertion
-filterObsolete02 =
+filterObsolete2 :: Assertion
+filterObsolete2 =
nodes (filterObsolete [4] testGraph01) == S.fromList [4, 2, 6, 8]
- @? "filterObsolete02"
+ @? "filterObsolete2"