Vendor things
This commit is contained in:
parent
5deceec006
commit
977e3c17e5
19434 changed files with 10682014 additions and 0 deletions
17
third-party/vendor/toml_edit/tests/decoder_compliance.rs
vendored
Normal file
17
third-party/vendor/toml_edit/tests/decoder_compliance.rs
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
mod decoder;
|
||||
|
||||
fn main() {
|
||||
let decoder = decoder::Decoder;
|
||||
let mut harness = toml_test_harness::DecoderHarness::new(decoder);
|
||||
harness
|
||||
.ignore([
|
||||
"valid/spec/float-0.toml", // Test issue; `Decoder` turns `6.626e-34` into `0.0`
|
||||
// Unreleased
|
||||
"valid/string/escape-esc.toml",
|
||||
"valid/string/hex-escape.toml",
|
||||
"valid/datetime/no-seconds.toml",
|
||||
"valid/inline-table/newline.toml",
|
||||
])
|
||||
.unwrap();
|
||||
harness.test();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue