fn attributevalue_get_s()

in src/store/dynamodb/ext.rs [55:60]


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

        assert_eq!(item.get_s("id"), Some("foo".to_owned()));
    }