mirror of
https://github.com/russross/blackfriday.git
synced 2024-03-22 13:40:34 +08:00
unit test for linebreaks
This commit is contained in:
parent
4b850e8098
commit
1e40ebaf47
|
@ -234,8 +234,8 @@ func TestCodeSpan(t *testing.T) {
|
|||
"`source code` and a `stray\n",
|
||||
"<p><code>source code</code> and a `stray</p>\n",
|
||||
|
||||
"`source with _awkward characters_ in it`\n",
|
||||
"<p><code>source with _awkward characters_ in it</code></p>\n",
|
||||
"`source *with* _awkward characters_ in it`\n",
|
||||
"<p><code>source *with* _awkward characters_ in it</code></p>\n",
|
||||
|
||||
"`split over\ntwo lines`\n",
|
||||
"<p><code>split over\ntwo lines</code></p>\n",
|
||||
|
@ -248,3 +248,17 @@ func TestCodeSpan(t *testing.T) {
|
|||
}
|
||||
doTests(t, tests)
|
||||
}
|
||||
|
||||
func TestLineBreak(t *testing.T) {
|
||||
var tests = []string{
|
||||
"this line \nhas a break\n",
|
||||
"<p>this line<br />\nhas a break</p>\n",
|
||||
|
||||
"this line \ndoes not\n",
|
||||
"<p>this line \ndoes not</p>\n",
|
||||
|
||||
"this has an \nextra space\n",
|
||||
"<p>this has an<br />\nextra space</p>\n",
|
||||
}
|
||||
doTests(t, tests)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user