wasmer/lib/wasi/tests/wasitests/hello.rs
2019-05-17 12:09:31 -07:00

10 lines
167 B
Rust

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