diff options
author | Noah Campbell <[email protected]> | 2013-11-05 22:28:06 +0000 |
---|---|---|
committer | Noah Campbell <[email protected]> | 2013-11-05 22:28:06 +0000 |
commit | 86233c00a0a04e8f0130a5970de8d40e6738ef74 (patch) | |
tree | 772e16697927e7bc564e640f6524781699437f02 /hugolib/site_url_test.go | |
parent | 1cebce12ad2335e1140646763dd56009c57d6495 (diff) | |
download | hugo-86233c00a0a04e8f0130a5970de8d40e6738ef74.tar.gz hugo-86233c00a0a04e8f0130a5970de8d40e6738ef74.zip |
Remove the hugo-nav function
Remove the hugo-nav since it relied on a slow library. The current
build reimplements the absurl functionality based on string replace.
Discovered that my prior implementation missed the requirement for
making absolute paths (/path) absolute with the host, whereas a relative
path is left untouched. Updated the test cases to support this if this
is reimplemented.
Diffstat (limited to 'hugolib/site_url_test.go')
-rw-r--r-- | hugolib/site_url_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hugolib/site_url_test.go b/hugolib/site_url_test.go index 27be0721f..9d41c2046 100644 --- a/hugolib/site_url_test.go +++ b/hugolib/site_url_test.go @@ -81,7 +81,7 @@ func TestPageCount(t *testing.T) { t.Errorf("No indexed rendered. %v", target.Files) } - expected := "<html><head></head><body>..</body></html>" + expected := ".." if string(blueIndex) != expected { t.Errorf("Index template does not match expected: %q, got: %q", expected, string(blueIndex)) } |