mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-22 09:01:04 -05:00
20f4e5de75
Fixes #277
44 lines
1,013 B
Rust
44 lines
1,013 B
Rust
use assert_cmd::Command;
|
|
|
|
#[test]
|
|
fn test_stdin_success() {
|
|
let mut cmd = Command::cargo_bin("typos").unwrap();
|
|
cmd.arg("-").write_stdin("Hello world");
|
|
cmd.assert().success();
|
|
}
|
|
|
|
#[test]
|
|
fn test_stdin_failure() {
|
|
let mut cmd = Command::cargo_bin("typos").unwrap();
|
|
cmd.arg("-").write_stdin("Apropriate world");
|
|
cmd.assert().code(2);
|
|
}
|
|
|
|
#[test]
|
|
fn test_stdin_correct() {
|
|
let mut cmd = Command::cargo_bin("typos").unwrap();
|
|
cmd.arg("-")
|
|
.arg("--write-changes")
|
|
.write_stdin("Apropriate world");
|
|
cmd.assert().success().stdout("Appropriate world");
|
|
}
|
|
|
|
#[test]
|
|
fn test_file_failure() {
|
|
let mut cmd = Command::cargo_bin("typos").unwrap();
|
|
cmd.arg("README.md");
|
|
cmd.assert().code(2);
|
|
}
|
|
|
|
#[test]
|
|
fn test_relative_dir_failure() {
|
|
let mut cmd = Command::cargo_bin("typos").unwrap();
|
|
cmd.arg(".");
|
|
cmd.assert().code(2);
|
|
}
|
|
|
|
#[test]
|
|
fn test_assumed_dir_failure() {
|
|
let mut cmd = Command::cargo_bin("typos").unwrap();
|
|
cmd.assert().code(2);
|
|
}
|