summaryrefslogtreecommitdiffstats
path: root/modules/markup/markup_test.go
diff options
context:
space:
mode:
authorLunny Xiao <xiaolunwen@gmail.com>2017-04-21 15:01:08 +0800
committerKim "BKC" Carlbäcker <kim.carlbacker@gmail.com>2017-04-21 09:01:08 +0200
commit52627032bc55bd73694bea9e6e17df575b51664c (patch)
tree2324046a3936f5b5e68bf07ed7adaf083411b329 /modules/markup/markup_test.go
parentf0db3da713eb9440923ddf376349e72b65f129ef (diff)
downloadgitea-52627032bc55bd73694bea9e6e17df575b51664c.tar.gz
gitea-52627032bc55bd73694bea9e6e17df575b51664c.zip
Add markup package to prepare for org markup format (#1493)
Diffstat (limited to 'modules/markup/markup_test.go')
-rw-r--r--modules/markup/markup_test.go36
1 files changed, 36 insertions, 0 deletions
diff --git a/modules/markup/markup_test.go b/modules/markup/markup_test.go
new file mode 100644
index 0000000000..92caa8ff96
--- /dev/null
+++ b/modules/markup/markup_test.go
@@ -0,0 +1,36 @@
+// Copyright 2017 The Gitea Authors. All rights reserved.
+// Use of this source code is governed by a MIT-style
+// license that can be found in the LICENSE file.
+
+package markup
+
+import (
+ "testing"
+
+ "github.com/stretchr/testify/assert"
+)
+
+func TestMisc_IsReadmeFile(t *testing.T) {
+ trueTestCases := []string{
+ "readme",
+ "README",
+ "readME.mdown",
+ "README.md",
+ }
+ falseTestCases := []string{
+ "test.md",
+ "wow.MARKDOWN",
+ "LOL.mDoWn",
+ "test",
+ "abcdefg",
+ "abcdefghijklmnopqrstuvwxyz",
+ "test.md.test",
+ }
+
+ for _, testCase := range trueTestCases {
+ assert.True(t, IsReadmeFile(testCase))
+ }
+ for _, testCase := range falseTestCases {
+ assert.False(t, IsReadmeFile(testCase))
+ }
+}