blob: 383058118fbc7cdae244c77a84209572195103da [file] [log] [blame]
use cargo_test_support::file;
use cargo_test_support::prelude::*;
use cargo_test_support::str;
#[cargo_test]
fn case() {
snapbox::cmd::Command::cargo_ui()
.arg("login")
.arg("--help")
.assert()
.success()
.stdout_matches(file!["stdout.term.svg"])
.stderr_matches(str![""]);
}