summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/Tests.hs12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/Tests.hs b/tests/Tests.hs
index 018d148..5e449f2 100644
--- a/tests/Tests.hs
+++ b/tests/Tests.hs
@@ -45,9 +45,6 @@ tests = [ testGroup "Util group"
]
, testGroup "File group"
- [ testCase "toDestination 1" test_to_destination1
- , testCase "toDestination 2" test_to_destination2
- , testCase "toDestination 3" test_to_destination3
, testCase "toRoot 1" test_to_root1
, testCase "toRoot 2" test_to_root2
, testCase "toRoot 3" test_to_root3
@@ -112,15 +109,6 @@ test_render_date2 = M.lookup "date" rendered @?= Just "Unknown date"
rendered = renderDate "date" "%B %e, %Y" "Unknown date" $
M.singleton "path" "2009-badness-30-a-title.markdown"
--- toDestination test cases
-test_to_destination1 = toDestination "/posts/foo.html"
- @?= "_site/posts/foo.html"
-
-test_to_destination2 = toDestination "$root/posts/foo.html"
- @?= "_site/posts/foo.html"
-
-test_to_destination3 = toDestination "foo.html" @?= "_site/foo.html"
-
-- toRoot test cases
test_to_root1 = toRoot "/posts/foo.html" @?= ".."
test_to_root2 = toRoot "posts/foo.html" @?= ".."