blob: ac19737fbcc31dca2fbcbe51bb7aa99390c51514 [file] [log] [blame]
#[cfg(feature = "easy")]
mod easy_decoder;
#[cfg(feature = "easy")]
fn main() {
let decoder = easy_decoder::Decoder;
let mut harness = toml_test_harness::DecoderHarness::new(decoder);
harness
.ignore([
"invalid/control/comment-cr.toml",
"invalid/table/append-with-dotted-keys-2.toml",
])
.unwrap();
harness.test();
}
#[cfg(not(feature = "easy"))]
fn main() {}