11 lines
299 B
Rust
11 lines
299 B
Rust
use tempfile;
|
|
use wasmtime_environ::cache_conf;
|
|
|
|
#[test]
|
|
#[should_panic]
|
|
fn test_fail_calling_init_twice() {
|
|
let dir = tempfile::tempdir().expect("Can't create temporary directory");
|
|
cache_conf::init(true, Some(dir.path()), Some(5));
|
|
cache_conf::init(true, Some(dir.path()), Some(5));
|
|
}
|