Ensure Section is set before returning Page object.
authorNoah Campbell <noahcampbell@gmail.com>
Sat, 31 Aug 2013 00:14:36 +0000 (17:14 -0700)
committerNoah Campbell <noahcampbell@gmail.com>
Sat, 31 Aug 2013 03:13:22 +0000 (20:13 -0700)
hugolib/page.go
hugolib/page_test.go

index a888d0e6889f1391eae5fec2a0b7bb74254bf188..409da23bcac2217d8a53a76619202eda612b0ca7 100644 (file)
@@ -87,6 +87,7 @@ func NewPage(filename string) *Page {
                Params: make(map[string]interface{}),
                Markup: "md"}
        page.Date, _ = time.Parse("20060102", "20080101")
+       page.guessSection()
        return &page
 }
 
index ec1695fb7bb127d9cedf68eee25d46034bc27c4a..a1c7c755d6b1c6eebc4c4c392f210201ee360cf1 100644 (file)
@@ -219,6 +219,13 @@ func TestDegenerateInvalidFrontMatterLeadingWhitespace(t *testing.T) {
        }
 }
 
+func TestSectionEvaluation(t *testing.T) {
+       page, _ := ReadFrom(strings.NewReader(SIMPLE_PAGE), filepath.FromSlash("blue/file1.md"))
+       if page.Section != "blue" {
+               t.Errorf("Section should be %s, got: %s", "blue", page.Section)
+       }
+}
+
 func TestLayoutOverride(t *testing.T) {
        var (
                path_content_one_dir = filepath.Join("content", "gub", "file1.md")