fn attributevalue_get_s_missing()

in src/store/dynamodb/ext.rs [63:68]


    fn attributevalue_get_s_missing() {
        let mut item = HashMap::new();
        item.insert("id".to_owned(), AttributeValue::S("foo".to_owned()));

        assert_eq!(item.get_s("foo"), None);
    }