blob: 8d0f4f54cb87afc6b8102197ccd3510ca4c9c04e [file] [log] [blame]
mod decoder;
fn main() {
let decoder = 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();
}