diff options
author | Bjørn Erik Pedersen <[email protected]> | 2023-07-28 10:53:47 +0200 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2023-07-28 15:14:23 +0200 |
commit | b3cb6788b2634a89ae774895f345f082020b52d8 (patch) | |
tree | 08eadc21d9308510e332a4898d2c06516cb6e497 /hugolib/site_url_test.go | |
parent | 5542f02fbc4c9467a4338ee1ce2e741f480a0751 (diff) | |
download | hugo-b3cb6788b2634a89ae774895f345f082020b52d8.tar.gz hugo-b3cb6788b2634a89ae774895f345f082020b52d8.zip |
Move all Kind constants to its own package
See #11256
Diffstat (limited to 'hugolib/site_url_test.go')
-rw-r--r-- | hugolib/site_url_test.go | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/hugolib/site_url_test.go b/hugolib/site_url_test.go index 821c84c95..fd15eb5d3 100644 --- a/hugolib/site_url_test.go +++ b/hugolib/site_url_test.go @@ -18,10 +18,9 @@ import ( "path/filepath" "testing" - "github.com/gohugoio/hugo/resources/page" - qt "github.com/frankban/quicktest" "github.com/gohugoio/hugo/deps" + "github.com/gohugoio/hugo/resources/kinds" ) const slugDoc1 = "---\ntitle: slug doc 1\nslug: slug-doc-1\naliases:\n - /sd1/foo/\n - /sd2\n - /sd3/\n - /sd4.html\n---\nslug doc 1 content\n" @@ -68,12 +67,12 @@ Do not go gentle into that good night. c.Assert(len(s.RegularPages()), qt.Equals, 2) - notUgly := s.getPage(page.KindPage, "sect1/p1.md") + notUgly := s.getPage(kinds.KindPage, "sect1/p1.md") c.Assert(notUgly, qt.Not(qt.IsNil)) c.Assert(notUgly.Section(), qt.Equals, "sect1") c.Assert(notUgly.RelPermalink(), qt.Equals, "/sect1/p1/") - ugly := s.getPage(page.KindPage, "sect2/p2.md") + ugly := s.getPage(kinds.KindPage, "sect2/p2.md") c.Assert(ugly, qt.Not(qt.IsNil)) c.Assert(ugly.Section(), qt.Equals, "sect2") c.Assert(ugly.RelPermalink(), qt.Equals, "/sect2/p2.html") @@ -125,7 +124,7 @@ Do not go gentle into that good night. c.Assert(len(s.RegularPages()), qt.Equals, 10) - sect1 := s.getPage(page.KindSection, "sect1") + sect1 := s.getPage(kinds.KindSection, "sect1") c.Assert(sect1, qt.Not(qt.IsNil)) c.Assert(sect1.RelPermalink(), qt.Equals, "/ss1/") th.assertFileContent(filepath.Join("public", "ss1", "index.html"), "P1|URL: /ss1/|Next: /ss1/page/2/") |