diff options
author | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2010-01-20 16:46:22 +0100 |
---|---|---|
committer | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2010-01-20 16:46:22 +0100 |
commit | 8602f23f7bcdcc3bec65ec98c70ee3f295482856 (patch) | |
tree | 8f86b9cb541ba0c4f1167a2211db090480d2f5b2 /tests | |
parent | d79022fb3481dd2f6c2c0d9112c6c6f37c71204e (diff) | |
download | hakyll-8602f23f7bcdcc3bec65ec98c70ee3f295482856.tar.gz |
Made site and cache directory configurable. Caching stubs.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Tests.hs | 12 |
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" @?= ".." |