c8919e8ed1
cc #224
21 lines
316 B
Rust
21 lines
316 B
Rust
extern crate toml;
|
|
|
|
#[test]
|
|
fn bad() {
|
|
fn bad(s: &str) {
|
|
assert!(s.parse::<toml::Value>().is_err());
|
|
}
|
|
|
|
bad("a = 01");
|
|
bad("a = 1__1");
|
|
bad("a = 1_");
|
|
bad("''");
|
|
bad("a = 9e99999");
|
|
|
|
bad("a = \"\u{7f}\"");
|
|
bad("a = '\u{7f}'");
|
|
|
|
bad("a = -0x1");
|
|
bad("a = 0x-1");
|
|
}
|