aboutsummaryrefslogtreecommitdiffstats
path: root/tests/misc_bom.rs
blob: f15eae25d009e3ec6d3daef5ba334a3bdbfa238e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
extern crate markdown;
use markdown::to_html;
use pretty_assertions::assert_eq;

#[test]
fn bom() {
    assert_eq!(to_html("\u{FEFF}"), "", "should ignore just a bom");

    assert_eq!(
        to_html("\u{FEFF}# hea\u{FEFF}ding"),
        "<h1>hea\u{FEFF}ding</h1>",
        "should ignore a bom"
    );
}