From 1882ffabc603a1a5a81b536157610dbbb4e1bd6a Mon Sep 17 00:00:00 2001 From: spf13 Date: Tue, 28 Jan 2014 23:24:59 -0500 Subject: Adding support for boolean params --- hugolib/page_test.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'hugolib/page_test.go') diff --git a/hugolib/page_test.go b/hugolib/page_test.go index aef303a77..83bef158c 100644 --- a/hugolib/page_test.go +++ b/hugolib/page_test.go @@ -209,6 +209,7 @@ var PAGE_WITH_VARIOUS_FRONTMATTER_TYPES = `+++ a_string = "bar" an_integer = 1 a_float = 1.3 +a_bool = false a_date = 1979-05-27T07:32:00Z +++ Front Matter with various frontmatter types` @@ -458,6 +459,9 @@ func TestDifferentFrontMatterVarTypes(t *testing.T) { if page.GetParam("a_float") != 1.3 { t.Errorf("frontmatter not handling floats correctly should be %s, got: %s", 1.3, page.GetParam("a_float")) } + if page.GetParam("a_bool") != false { + t.Errorf("frontmatter not handling bools correctly should be %s, got: %s", false, page.GetParam("a_bool")) + } if page.GetParam("a_date") != dateval { t.Errorf("frontmatter not handling dates correctly should be %s, got: %s", dateval, page.GetParam("a_date")) } -- cgit v1.2.3