Better handling of numbers

This commit is contained in:
Smitty 2021-05-30 11:00:35 -04:00
parent 284af1ad9f
commit c6e0b7745c
3 changed files with 34 additions and 6 deletions

View file

@ -30,3 +30,9 @@ fn mount_everest() {
let j: serde_json::Value = serde_json::from_str(include_str!("../items/Q513.json")).unwrap();
Entity::from_json(j).unwrap();
}
#[test]
fn portugal() {
let j: serde_json::Value = serde_json::from_str(include_str!("../items/Q45.json")).unwrap();
Entity::from_json(j).unwrap();
}