mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-30 16:09:12 +00:00
18 lines
576 B
Rust
18 lines
576 B
Rust
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);
|
|
|
|
twoway!("multi" => multi);
|
|
|
|
twoway!("multiexpr" => multiexpr);
|