mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
parent
8aa90f2b7e
commit
f6591eca35
1 changed files with 4 additions and 0 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue