From: Bjørn Erik Pedersen Date: Thu, 3 Mar 2016 22:17:10 +0000 (+0100) Subject: tpl: Add some dateFormat testcases with both time and date X-Git-Tag: v0.16~291 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=f6591eca;p=brevno-suite%2Fhugo tpl: Add some dateFormat testcases with both time and date See #235 --- diff --git a/tpl/template_funcs_test.go b/tpl/template_funcs_test.go index 1104824d..a0f75da6 100644 --- a/tpl/template_funcs_test.go +++ b/tpl/template_funcs_test.go @@ -1785,6 +1785,10 @@ func TestDateFormat(t *testing.T) { {"This isn't a date layout string", "2015-01-21", "This isn't a date layout string"}, {"Monday, Jan 2, 2006", 1421733600, false}, {"Monday, Jan 2, 2006", 1421733600.123, false}, + {time.RFC3339, time.Date(2016, time.March, 3, 4, 5, 0, 0, time.UTC), "2016-03-03T04:05:00Z"}, + {time.RFC1123, time.Date(2016, time.March, 3, 4, 5, 0, 0, time.UTC), "Thu, 03 Mar 2016 04:05:00 UTC"}, + {time.RFC3339, "Thu, 03 Mar 2016 04:05:00 UTC", "2016-03-03T04:05:00Z"}, + {time.RFC1123, "2016-03-03T04:05:00Z", "Thu, 03 Mar 2016 04:05:00 UTC"}, } { result, err := dateFormat(this.layout, this.value) if b, ok := this.expect.(bool); ok && !b {