in src/store/dynamodb/ext.rs [71:76]
fn attributevalue_get_n() {
let mut item = HashMap::new();
item.insert("price".to_owned(), AttributeValue::N("10.0".to_owned()));
assert_eq!(item.get_n("price"), Some(10.0));
}