use crate::prelude::*;
#[derive(Document)]
struct Ty {
f1: String,
f2: String,
f3: String,
}
printer_test! {
"output.json" => to_json(Ty),
"output.without-comma.json" => to_json_without_comma(Ty),
"output.without-key-quotes.json" => to_json_without_key_quotes(Ty),
"output.toml" => to_toml(Ty),
}