wasmer/lib/wasi/tests/wasitests/hello.rs

11 lines
183 B
Rust

#[test]
fn test_hello() {
assert_wasi_output!(
"../../wasitests/hello.wasm",
"hello",
vec![],
vec![],
"../../wasitests/hello.out"
);
}