2024-05-27 10:28:13 -05:00

15 lines
333 B
Rust

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("generate-lockfile")
.arg("--help")
.assert()
.success()
.stdout_eq_(file!["stdout.term.svg"])
.stderr_eq_(str![""]);
}