wasmer/lib/wasi-tests/tests/wasitests/hello.rs
2019-07-17 14:00:51 -07:00

12 lines
199 B
Rust

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