shithub: hugo

Download patch

ref: f6591eca35e0051873ea348a073522bd1b73b743
parent: 8aa90f2b7e83c748170109eb94169e5222c1755a
author: Bjørn Erik Pedersen <[email protected]>
date: Thu Mar 3 18:17:10 EST 2016

tpl: Add some dateFormat testcases with both time and date

See #235

--- a/tpl/template_funcs_test.go
+++ b/tpl/template_funcs_test.go
@@ -1785,6 +1785,10 @@
 		{"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 {