summaryrefslogtreecommitdiffstats
path: root/helpers/path_test.go
diff options
context:
space:
mode:
authorAditya Bhargava <bluemangroupie@gmail.com>2016-03-12 15:48:21 -0800
committerSteve Francia <steve.francia@gmail.com>2016-03-21 18:48:50 -0400
commitc42982f76b397a5875114b59391712048e168348 (patch)
treefaf0e8505d4a34977a23afc278d93e2e70cc0ced /helpers/path_test.go
parent02effd9dc46201df250564cdbbee1ca2291eb8b4 (diff)
Add '+' as one of the valid characters in urls specified in the front matter
Fixes #1290
Diffstat (limited to 'helpers/path_test.go')
-rw-r--r--helpers/path_test.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/helpers/path_test.go b/helpers/path_test.go
index 53848b0b5..ddb1b99c6 100644
--- a/helpers/path_test.go
+++ b/helpers/path_test.go
@@ -48,6 +48,7 @@ func TestMakePath(t *testing.T) {
// Issue #1488
{"संस्कृत", "संस्कृत", false},
{"a%C3%B1ame", "a%C3%B1ame", false}, // Issue #1292
+ {"this+is+a+test", "this+is+a+test", false}, // Issue #1290
}
for _, test := range tests {