diff options
| author | 2022-06-15 12:16:53 +0200 | |
|---|---|---|
| committer | 2022-06-15 12:16:53 +0200 | |
| commit | 700f1f5bfb48a80e9e4658a1112d5115cc9da8d4 (patch) | |
| tree | b77197bb33fb9eb3f1666aae35dadca405123af8 /tests | |
| parent | df5b39f8c1cb6b3f3a8a19c5a4722433e2ef1dff (diff) | |
| download | markdown-rs-700f1f5bfb48a80e9e4658a1112d5115cc9da8d4.tar.gz markdown-rs-700f1f5bfb48a80e9e4658a1112d5115cc9da8d4.tar.bz2 markdown-rs-700f1f5bfb48a80e9e4658a1112d5115cc9da8d4.zip | |
Add tests for text
Diffstat (limited to '')
| -rw-r--r-- | tests/text.rs | 23 | 
1 files changed, 23 insertions, 0 deletions
| diff --git a/tests/text.rs b/tests/text.rs new file mode 100644 index 0000000..7db9e1a --- /dev/null +++ b/tests/text.rs @@ -0,0 +1,23 @@ +extern crate micromark; +use micromark::micromark; + +#[test] +fn text() { +    assert_eq!( +        micromark("hello $.;'there"), +        "<p>hello $.;'there</p>", +        "should support ascii text" +    ); + +    assert_eq!( +        micromark("Foo χρῆν"), +        "<p>Foo χρῆν</p>", +        "should support unicode text" +    ); + +    assert_eq!( +        micromark("Multiple     spaces"), +        "<p>Multiple     spaces</p>", +        "should preserve internal spaces verbatim" +    ); +} | 
