summaryrefslogtreecommitdiffstats
path: root/parser/parse_frontmatter_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'parser/parse_frontmatter_test.go')
-rw-r--r--parser/parse_frontmatter_test.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/parser/parse_frontmatter_test.go b/parser/parse_frontmatter_test.go
index e2722f788..b7764ca2d 100644
--- a/parser/parse_frontmatter_test.go
+++ b/parser/parse_frontmatter_test.go
@@ -304,6 +304,7 @@ func TestExtractFrontMatterDelim(t *testing.T) {
{`{ "title": "\"{", "other": "\"{}" }`, `{ "title": "\"{", "other": "\"{}" }`, noErrExpected},
{`{ "title": "\"Foo\"" }`, `{ "title": "\"Foo\"" }`, noErrExpected},
{`{ "title": "\"Foo\"\"" }`, `{ "title": "\"Foo\"\"" }`, noErrExpected},
+ {`{ "url": "http:\/\/example.com\/play\/url?id=1" }`, `{ "url": "http:\/\/example.com\/play\/url?id=1" }`, noErrExpected},
}
for i, test := range tests {