GroupByParamDate now supports datetimes

Previously, the method only worked for date strings but not (for
instance) full RFC3339 datetime strings.
This commit is contained in:
Horst Gutmann
2020-12-28 16:06:10 +01:00
committed by Bjørn Erik Pedersen
parent a9718f44cd
commit f9f779786e
2 changed files with 3 additions and 2 deletions

View File

@@ -34,7 +34,8 @@ var pageGroupTestSources = []pageGroupTestObject{
{"/section1/testpage2.md", 3, "2012-01-01", "bar"},
{"/section1/testpage3.md", 2, "2012-04-06", "foo"},
{"/section2/testpage4.md", 1, "2012-03-02", "bar"},
{"/section2/testpage5.md", 1, "2012-04-06", "baz"},
// date might also be a full datetime:
{"/section2/testpage5.md", 1, "2012-04-06T00:00:00Z", "baz"},
}
func preparePageGroupTestPages(t *testing.T) Pages {