From fad9134fd4957c4c38e0dd7e1263ea5bfc8af32c Mon Sep 17 00:00:00 2001 From: Jasper Van der Jeugt Date: Sat, 10 Aug 2013 16:18:59 +0200 Subject: Add functionField again --- tests/Hakyll/Web/Template/Tests.hs | 1 + tests/data/template.html | 2 ++ tests/data/template.html.out | 2 ++ 3 files changed, 5 insertions(+) (limited to 'tests') diff --git a/tests/Hakyll/Web/Template/Tests.hs b/tests/Hakyll/Web/Template/Tests.hs index 1d80a06..8763147 100644 --- a/tests/Hakyll/Web/Template/Tests.hs +++ b/tests/Hakyll/Web/Template/Tests.hs @@ -58,6 +58,7 @@ testContext = mconcat n1 <- makeItem "Jan" n2 <- makeItem "Piet" return [n1, n2] + , functionField "rev" $ \args _ -> return $ unwords $ map reverse args ] where diff --git a/tests/data/template.html b/tests/data/template.html index 22e5ddd..26f9e8a 100644 --- a/tests/data/template.html +++ b/tests/data/template.html @@ -1,6 +1,8 @@
I'm so rich I have $$3. + $rev foo$ + $if(body)$ I have body $else$ diff --git a/tests/data/template.html.out b/tests/data/template.html.out index 8047b0d..0b17d31 100644 --- a/tests/data/template.html.out +++ b/tests/data/template.html.out @@ -1,6 +1,8 @@
I'm so rich I have $3. + oof + I have body -- cgit v1.2.3