()
| 700 | #[test] |
| 701 | #[cfg(unix)] |
| 702 | fn run_just_stdin_argument() -> Result<()> { |
| 703 | let output = get_wasmtime_command()? |
| 704 | .arg("-") |
| 705 | .stdin(File::open("tests/all/cli_tests/simple.wat")?) |
| 706 | .output()?; |
| 707 | assert!(output.status.success()); |
| 708 | Ok(()) |
| 709 | } |
| 710 | |
| 711 | #[test] |
| 712 | fn wasm_flags_without_subcommand() -> Result<()> { |
nothing calls this directly
no test coverage detected