1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 03:27:44 +00:00

tests ~ refactor/polish spelling (comments, names, and exceptions)

This commit is contained in:
Roy Ivy III 2021-05-30 00:10:54 -05:00
parent 5c9b474cc8
commit 4e20dedf58
63 changed files with 368 additions and 302 deletions

View file

@ -65,10 +65,10 @@ fn test_symlink_circular() {
}
#[test]
fn test_symlink_dont_overwrite() {
fn test_symlink_do_not_overwrite() {
let (at, mut ucmd) = at_and_ucmd!();
let file = "test_symlink_dont_overwrite";
let link = "test_symlink_dont_overwrite_link";
let file = "test_symlink_do_not_overwrite";
let link = "test_symlink_do_not_overwrite_link";
at.touch(file);
at.touch(link);
@ -120,7 +120,7 @@ fn test_symlink_interactive() {
scene
.ucmd()
.args(&["-i", "-s", file, link])
.pipe_in("Yesh")
.pipe_in("Yesh") // spell-checker:disable-line
.succeeds()
.no_stderr();