modify testcase of joinLine.

1. delete testdata 'zhJoinLines.txt'.
2. move the testcase from markdown_test.go into block_test.go.
pull/334/head
choueric 2017-03-17 17:21:30 +08:00
parent 8098dab4eb
commit f0bb45f44c
3 changed files with 25 additions and 38 deletions

View File

@ -1713,3 +1713,28 @@ func TestIsFenceLine(t *testing.T) {
}
}
}
func TestJoinLines(t *testing.T) {
input := `#
`
result := `<h1></h1>
<p></p>
<p></p>
`
opt := Options{Extensions: commonExtensions | EXTENSION_JOIN_LINES}
renderer := HtmlRenderer(commonHtmlFlags, "", "")
output := MarkdownOptions([]byte(input), renderer, opt)
if string(output) != result {
t.Error("output dose not match.")
}
}

View File

@ -14,8 +14,6 @@
package blackfriday
import (
"io/ioutil"
"os"
"testing"
)
@ -75,31 +73,3 @@ func TestDocument(t *testing.T) {
}
doTests(t, tests)
}
func TestJoinLines(t *testing.T) {
result := `<h1></h1>
<p></p>
<p></p>
`
file, err := os.Open("testdata/zhJoinLines.text")
if err != nil {
t.Fatal(err)
}
defer file.Close()
input, err := ioutil.ReadAll(file)
if err != nil {
t.Fatal(err)
}
opt := Options{Extensions: commonExtensions | EXTENSION_JOIN_LINES}
renderer := HtmlRenderer(commonHtmlFlags, "", "")
output := MarkdownOptions(input, renderer, opt)
if string(output) != result {
t.Error("output dose not match.")
}
}

View File

@ -1,8 +0,0 @@
# 标题
第一
行文字。
行文字。