()
| 323 | // Run a minimal reactor program. |
| 324 | #[test] |
| 325 | fn minimal_reactor() -> Result<()> { |
| 326 | let wasm = build_wasm("tests/all/cli_tests/minimal-reactor.wat")?; |
| 327 | let stdout = run_wasmtime(&["-Ccache=n", wasm.path().to_str().unwrap()])?; |
| 328 | assert_eq!(stdout, ""); |
| 329 | Ok(()) |
| 330 | } |
| 331 | |
| 332 | // Attempt to call invoke on a command. |
| 333 | #[test] |
nothing calls this directly
no test coverage detected