mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-27 22:50:19 +00:00
25 lines
618 B
Rust
25 lines
618 B
Rust
macro_rules! twoway {
|
|
($val:literal => $name:ident) => {
|
|
#[test]
|
|
fn $name() {
|
|
let src = include_str!(concat!("./samples/", $val, ".rsx"));
|
|
let formatted = dioxus_autofmt::fmt_file(src);
|
|
let out = dioxus_autofmt::apply_formats(src, formatted);
|
|
pretty_assertions::assert_eq!(&src, &out);
|
|
}
|
|
};
|
|
}
|
|
|
|
twoway! ("simple" => simple);
|
|
|
|
twoway! ("comments" => comments);
|
|
|
|
twoway! ("attributes" => attributes);
|
|
|
|
twoway! ("manual_props" => manual_props);
|
|
|
|
twoway! ("complex" => complex);
|
|
|
|
twoway! ("tiny" => tiny);
|
|
|
|
twoway! ("tinynoopt" => tinynoopt);
|