1 use test_programs::wasi::config::store;
2 
main()3 fn main() {
4     let v = store::get("hello").unwrap().unwrap();
5     assert_eq!(v, "world");
6     let config = store::get_all().unwrap();
7     assert_eq!(config, [("hello".to_string(), "world".to_string())])
8 }
9