()
| 332 | // Attempt to call invoke on a command. |
| 333 | #[test] |
| 334 | fn command_invoke() -> Result<()> { |
| 335 | let wasm = build_wasm("tests/all/cli_tests/minimal-command.wat")?; |
| 336 | run_wasmtime(&[ |
| 337 | "run", |
| 338 | "--invoke", |
| 339 | "_start", |
| 340 | "-Ccache=n", |
| 341 | wasm.path().to_str().unwrap(), |
| 342 | ])?; |
| 343 | Ok(()) |
| 344 | } |
| 345 | |
| 346 | // Attempt to call invoke on a command. |
| 347 | #[test] |
nothing calls this directly
no test coverage detected