1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-27 19:17:43 +00:00

Merge pull request #7833 from cakebaker/shred_remove_obsolete_test

shred: remove obsolete test
This commit is contained in:
Sylvestre Ledru 2025-04-24 21:56:19 +02:00 committed by GitHub
commit b7f2815668
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -215,17 +215,6 @@ fn test_shred_fail_no_perm() {
.stderr_contains("Couldn't rename to"); .stderr_contains("Couldn't rename to");
} }
#[test]
fn test_shred_verbose_pass_single_0_byte_name() {
let (at, mut ucmd) = at_and_ucmd!();
let file = "foo";
at.write(file, "non-empty");
ucmd.arg("-vn200")
.arg(file)
.succeeds()
.stderr_contains("/200 (000000)...\n");
}
#[test] #[test]
fn test_shred_verbose_no_padding_1() { fn test_shred_verbose_no_padding_1() {
let (at, mut ucmd) = at_and_ucmd!(); let (at, mut ucmd) = at_and_ucmd!();