summaryrefslogtreecommitdiffstats
path: root/parser
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2016-03-14 15:42:59 +0100
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2016-03-14 15:42:59 +0100
commitdf3f2af0a81572e60c10f57ea31df4f854021ea5 (patch)
treecb7fa2fab621a4c46b19e87ec67f33de321eea44 /parser
parentdea185aa9b62e1660cb5c6e79e90f2078db7fe6f (diff)
parser: Remove unused code
Diffstat (limited to 'parser')
-rw-r--r--parser/parse_frontmatter_test.go9
1 files changed, 0 insertions, 9 deletions
diff --git a/parser/parse_frontmatter_test.go b/parser/parse_frontmatter_test.go
index d3e1f9dbb..babad351f 100644
--- a/parser/parse_frontmatter_test.go
+++ b/parser/parse_frontmatter_test.go
@@ -26,7 +26,6 @@ import (
)
var (
- CONTENT_EMPTY = ""
CONTENT_NO_FRONTMATTER = "a page with no front matter"
CONTENT_WITH_FRONTMATTER = "---\ntitle: front matter\n---\nContent with front matter"
CONTENT_HTML_NODOCTYPE = "<html>\n\t<body>\n\t</body>\n</html>"
@@ -34,13 +33,11 @@ var (
CONTENT_HTML_WITH_FRONTMATTER = "---\ntitle: front matter\n---\n<!doctype><html><body></body></html>"
CONTENT_LWS_HTML = " <html><body></body></html>"
CONTENT_LWS_LF_HTML = "\n<html><body></body></html>"
- CONTENT_INCOMPLETE_BEG_FM_DELIM = "--\ntitle: incomplete beg fm delim\n---\nincomplete frontmatter delim"
CONTENT_INCOMPLETE_END_FM_DELIM = "---\ntitle: incomplete end fm delim\n--\nincomplete frontmatter delim"
CONTENT_MISSING_END_FM_DELIM = "---\ntitle: incomplete end fm delim\nincomplete frontmatter delim"
CONTENT_SLUG_WORKING = "---\ntitle: slug doc 2\nslug: slug-doc-2\n\n---\nslug doc 2 content"
CONTENT_SLUG_WORKING_VARIATION = "---\ntitle: slug doc 3\nslug: slug-doc 3\n---\nslug doc 3 content"
CONTENT_SLUG_BUG = "---\ntitle: slug doc 2\nslug: slug-doc-2\n---\nslug doc 2 content"
- CONTENT_FM_NO_DOC = "---\ntitle: no doc\n---"
CONTENT_WITH_JS_FM = "{\n \"categories\": \"d\",\n \"tags\": [\n \"a\", \n \"b\", \n \"c\"\n ]\n}\nJSON Front Matter with tags and categories"
CONTENT_WITH_JS_LOOSE_FM = "{\n \"categories\": \"d\"\n \"tags\": [\n \"a\" \n \"b\" \n \"c\"\n ]\n}\nJSON Front Matter with tags and categories"
)
@@ -55,12 +52,6 @@ func pageMust(p Page, err error) *page {
return p.(*page)
}
-func pageRecoverAndLog(t *testing.T) {
- if err := recover(); err != nil {
- t.Errorf("panic/recover: %s\n", err)
- }
-}
-
func TestDegenerateCreatePageFrom(t *testing.T) {
tests := []struct {
content string