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

stty: add option to print terminal size

This commit is contained in:
Will Shuttleworth 2025-06-18 12:57:03 -04:00
parent 93ac655936
commit 10f8d77560
2 changed files with 35 additions and 6 deletions

View file

@ -48,6 +48,14 @@ fn all_and_setting() {
.stderr_contains("when specifying an output style, modes may not be set");
}
#[test]
fn all_and_print_setting() {
new_ucmd!()
.args(&["--all", "size"])
.fails()
.stderr_contains("when specifying an output style, modes may not be set");
}
#[test]
fn save_and_all() {
new_ucmd!()