1use test_programs::wasi::config::store; 2 3fn 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 10