mirror of
https://github.com/rust-lang/cargo.git
synced 2025-09-25 11:14:46 +00:00

This uses a new feature from snapbox that let's us render terminal styling in SVG files. This let's us see / visualize ANSI escape codes, including in github's UI (will render images, including side-by-side images for diffs).
33 lines
978 B
Rust
33 lines
978 B
Rust
use cargo_test_support::compare::assert_ui;
|
|
use cargo_test_support::current_dir;
|
|
use cargo_test_support::file;
|
|
use cargo_test_support::prelude::*;
|
|
use cargo_test_support::str;
|
|
use cargo_test_support::Project;
|
|
|
|
#[cargo_test]
|
|
fn case() {
|
|
cargo_test_support::registry::init();
|
|
cargo_test_support::registry::Package::new("your-face", "99999.0.0+my-package")
|
|
.feature("nose", &[])
|
|
.feature("mouth", &[])
|
|
.feature("eyes", &[])
|
|
.feature("ears", &[])
|
|
.publish();
|
|
|
|
let project = Project::from_template(current_dir!().join("in"));
|
|
let project_root = project.root();
|
|
let cwd = &project_root;
|
|
|
|
snapbox::cmd::Command::cargo_ui()
|
|
.arg("add")
|
|
.arg_line("your-face --features eyes,nose")
|
|
.current_dir(cwd)
|
|
.assert()
|
|
.success()
|
|
.stdout_matches(str![""])
|
|
.stderr_matches(file!["stderr.term.svg"]);
|
|
|
|
assert_ui().subset_matches(current_dir!().join("out"), &project_root);
|
|
}
|