dioxus/packages/autofmt/tests/wrong.rs

15 lines
512 B
Rust
Raw Normal View History

2022-07-05 21:59:33 +00:00
macro_rules! twoway {
($val:literal => $name:ident) => {
#[test]
fn $name() {
let src_right = include_str!(concat!("./wrong/", $val, ".rsx"));
let src_wrong = include_str!(concat!("./wrong/", $val, ".wrong.rsx"));
let formatted = dioxus_autofmt::fmt_file(src_wrong);
let out = dioxus_autofmt::apply_formats(src_wrong, formatted);
pretty_assertions::assert_eq!(&src_right, &out);
}
};
}
twoway!("comments" => comments);