summaryrefslogtreecommitdiffstats
path: root/hugolib/site_url_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'hugolib/site_url_test.go')
-rw-r--r--hugolib/site_url_test.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/hugolib/site_url_test.go b/hugolib/site_url_test.go
index 671695b4d..2be615963 100644
--- a/hugolib/site_url_test.go
+++ b/hugolib/site_url_test.go
@@ -119,10 +119,12 @@ Do not go gentle into that good night.
notUgly := s.getPage(KindPage, "sect1/p1.md")
assert.NotNil(notUgly)
+ assert.Equal("sect1", notUgly.Section())
assert.Equal("/sect1/p1/", notUgly.RelPermalink())
ugly := s.getPage(KindPage, "sect2/p2.md")
assert.NotNil(ugly)
+ assert.Equal("sect2", ugly.Section())
assert.Equal("/sect2/p2.html", ugly.RelPermalink())
}