cargo/tests/testsuite/init/no_filename/mod.rs
Ed Page cbd4edb266 refactor(test): Clarify asserts are for UI
In writing the contrib documentation for functional vs ui tests, I
realized that as we work to make snapbox work for the functional tests,
we'll need distinct `Assert` objects since we'll want to elide a lot
more content in functional tests.  I'm making room for this by
qualifying the existing asserts as being for "ui".
2022-06-21 14:59:54 -05:00

17 lines
421 B
Rust

use cargo_test_support::paths;
use cargo_test_support::prelude::*;
use cargo_test_support::curr_dir;
#[cfg(not(windows))]
#[cargo_test]
fn no_filename() {
snapbox::cmd::Command::cargo_ui()
.arg_line("init /")
.current_dir(paths::root())
.assert()
.code(101)
.stdout_matches_path(curr_dir!().join("stdout.log"))
.stderr_matches_path(curr_dir!().join("stderr.log"));
}