name = "ext"
url = "http://gohugo.io"
identifier = "ext"
+[[menu.main]]
+ name = "ext2"
+ url = "http://foo.local/Zoo/foo"
+ identifier = "ext2"
[[menu.grandparent]]
name = "grandparent"
url = "/grandparent"
func TestMenuURL(t *testing.T) {
viper.Reset()
defer viper.Reset()
+
s := setupMenuTests(t, MENU_PAGE_SOURCES)
for i, this := range []struct {
{findTestMenuEntryByID(s, "hash", "hash"), "/Zoo/resource#anchor"},
// issue #1774
{findTestMenuEntryByID(s, "main", "ext"), "http://gohugo.io"},
+ {findTestMenuEntryByID(s, "main", "ext2"), "http://foo.local/Zoo/foo"},
} {
if this.me == nil {