Enable a missing field test

This commit is contained in:
Erick Tryzelaar 2015-03-16 21:23:20 -07:00
parent c6cc2340c8
commit a6ba251ef9

View File

@ -685,10 +685,8 @@ fn test_parse_option() {
x: Option<isize>,
}
/*
let value: Foo = from_str("{}").unwrap();
assert_eq!(value, Foo { x: None });
*/
test_parse_ok(&[
("{\"x\": null}", Foo { x: None }),