blob: 5d4fc2a4d57ae79a51ce5ce425ed82c9f0320044 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
mod decoder;
#[cfg(all(feature = "parse", feature = "display"))]
fn main() {
let decoder = decoder::Decoder;
let mut harness = toml_test_harness::DecoderHarness::new(decoder);
harness
.ignore([
"valid/spec/float-0.toml",
// Unreleased
"valid/string/escape-esc.toml",
"valid/string/hex-escape.toml",
"valid/datetime/no-seconds.toml",
"valid/inline-table/newline.toml",
])
.unwrap();
harness.test();
}
#[cfg(not(all(feature = "parse", feature = "display")))]
fn main() {}
|