From 547f98dff029d011e6498c901190de11a0bc9c61 Mon Sep 17 00:00:00 2001 From: Jasper Van der Jeugt Date: Fri, 8 Jan 2010 09:42:33 +0100 Subject: Added link function. --- tests/Tests.hs | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'tests') diff --git a/tests/Tests.hs b/tests/Tests.hs index f83399d..3c2cb1e 100644 --- a/tests/Tests.hs +++ b/tests/Tests.hs @@ -23,6 +23,8 @@ tests = [ testGroup "Util group" [ testProperty "trim length" prop_trim_length , testCase "stripHTML 3" test_strip_html3 , testCase "split 1" test_split1 , testCase "split 2" test_split2 + , testCase "link 1" test_link1 + , testCase "link 2" test_link2 ] , testGroup "CompressCSS group" [ testProperty "compressCSS length" prop_compress_css_length @@ -63,6 +65,10 @@ test_strip_html3 = stripHTML "Hakyll is an awesome web framework < test_split1 = split "," "1,2,3" @?= ["1", "2", "3"] test_split2 = split "," ",1,2," @?= ["1", "2"] +-- Link test cases. +test_link1 = link "foo bar" "/foo/bar.html" @?= "foo bar" +test_link2 = link "back home" "/" @?= "back home" + -- CSS compression should always decrease the text length. prop_compress_css_length str = length str >= length (compressCSS str) -- cgit v1.2.3