mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-23 12:43:08 +00:00
16 lines
540 B
Rust
16 lines
540 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);
|