mirror of
https://github.com/gohugoio/hugo.git
synced 2025-03-23 09:53:39 +00:00
First stab at correcting GuessSection tests
Updated the test to correctly test for "" when a non-absolute path is used. But the tests still fail for multi-part paths e.g. /contents/blog/
This commit is contained in:
parent
f81f9ceb40
commit
e2634752ce
1 changed files with 13 additions and 9 deletions
|
@ -421,15 +421,19 @@ func TestGuessSection(t *testing.T) {
|
||||||
data := []test{
|
data := []test{
|
||||||
{"/", ""},
|
{"/", ""},
|
||||||
{"", ""},
|
{"", ""},
|
||||||
{"/content", "/"},
|
{"/content", ""},
|
||||||
{"content/", "/"},
|
{"content/", ""},
|
||||||
{"/content/", "/"},
|
{"/content/", "content"},
|
||||||
{"/blog", "/blog"},
|
{"/blog", ""},
|
||||||
{"/blog/", "/blog/"},
|
{"/blog/", "blog"},
|
||||||
{"blog", "blog"},
|
{"blog", ""},
|
||||||
{"content/blog", "/blog"},
|
{"content/blog", ""},
|
||||||
{"content/blog/", "/blog/"},
|
{"/content/blog/", "blog"},
|
||||||
{"/content/blog", "/blog/"},
|
{"/content/blog", "blog"},
|
||||||
|
{"content/blog/", ""},
|
||||||
|
{"/contents/myblog/", "contents"},
|
||||||
|
{"/contents/yourblog", "contents"},
|
||||||
|
{"/contents/ourblog/", "contents"},
|
||||||
}
|
}
|
||||||
|
|
||||||
for i, d := range data {
|
for i, d := range data {
|
||||||
|
|
Loading…
Reference in a new issue