Added test for html -> plain text (#7)

Test passed; this was fixed in commit 7e36fff0f1 which has yet to be deployed
This commit is contained in:
Daniel J. Summers 2019-03-15 19:02:40 -05:00
parent ab262fdab3
commit 6a6b403216

View File

@ -61,6 +61,11 @@ let htmlToPlainTextTests =
test "does not fail when passed an empty string" {
Expect.equal (htmlToPlainText "") "" "Should return an empty string when given an empty string"
}
test "preserves blank lines for two consecutive line breaks" {
let expected = "Paragraph 1\n\nParagraph 2\n\n...and paragraph 3"
Expect.equal (htmlToPlainText "Paragraph 1<br><br>Paragraph 2<br><br>...and <strong>paragraph</strong> <i>3</i>")
expected "Blank lines not preserved for consecutive line breaks"
}
]
[<Tests>]