fix zero date
authorNate Finch <nate.finch@gmail.com>
Sat, 6 Sep 2014 12:03:03 +0000 (08:03 -0400)
committerspf13 <steve.francia@gmail.com>
Mon, 8 Sep 2014 15:55:54 +0000 (11:55 -0400)
hugolib/page.go
hugolib/site_test.go

index 1a68d384a41367115267b9d5a4bded885ca0985e..15299e12caa5508c798db2f01875d36fe074be84 100644 (file)
@@ -159,7 +159,6 @@ func newPage(filename string) *Page {
                Params: make(map[string]interface{})}
 
        jww.DEBUG.Println("Reading from", page.File.FileName)
-       page.Date, _ = time.Parse("20060102", "20080101")
        page.guessSection()
        return &page
 }
index 44acb0cc5f7f85d365041a7775b0068ae6e664a1..415c068da10261b0a0271f63db474d2ab20ca00c 100644 (file)
@@ -533,8 +533,8 @@ func TestGroupedPages(t *testing.T) {
        if err != nil {
                t.Fatalf("Unable to make PageGroup array: %s", err)
        }
-       if bydate[0].Key != "2008-01" {
-               t.Errorf("PageGroup array in unexpected order. First group key should be '%s', got '%s'", "2008-01", bydate[0].Key)
+       if bydate[0].Key != "0001-01" {
+               t.Errorf("PageGroup array in unexpected order. First group key should be '%s', got '%s'", "0001-01", bydate[0].Key)
        }
        if bydate[1].Key != "2012-01" {
                t.Errorf("PageGroup array in unexpected order. Second group key should be '%s', got '%s'", "2012-01", bydate[1].Key)