Files
wasmtime/wasmtime-environ/tests/cache_default_config_in_memory.rs
Artur Jamro febb0cb693 Cache worker
2019-09-18 16:43:27 -07:00

11 lines
307 B
Rust

use wasmtime_environ::cache_config;
#[test]
fn test_cache_default_config_in_memory() {
let errors = cache_config::init::<&str>(true, None, false, None);
assert!(
errors.is_empty(),
"This test loads config from the default location, if there's one. Make sure it's correct!"
);
}