mirror of
https://github.com/uutils/coreutils
synced 2024-12-14 15:22:38 +00:00
1fadeb43b2
Fix tests assert whitespace instead of trimming it. Disable some tests in `test_tr` because `tr` produces too many newlines.
16 lines
485 B
Rust
16 lines
485 B
Rust
use crate::common::util::*;
|
|
|
|
#[test]
|
|
fn test_z85_not_padded() {
|
|
// The z85 crate deviates from the standard in some cases; we have to catch those
|
|
new_ucmd!()
|
|
.args(&["--z85", "-d"])
|
|
.pipe_in("##########")
|
|
.fails()
|
|
.stderr_only("basenc: error: invalid input\n");
|
|
new_ucmd!()
|
|
.args(&["--z85"])
|
|
.pipe_in("123")
|
|
.fails()
|
|
.stderr_only("basenc: error: invalid input (length must be multiple of 4 characters)\n");
|
|
}
|