mirror of
https://github.com/uutils/coreutils
synced 2024-11-16 09:48:03 +00:00
c0be979611
`LANGUAGE=C` is not enough, `LC_ALL=C` is needed as the environment variable that overrides all the other localization settings. e.g. ```bash $ LANGUAGE=C id foobar id: ‘foobar’: no such user $ LC_ALL=C id foobar id: 'foobar': no such user ``` * replace `LANGUAGE` with `LC_ALL` as environment variable in the tests * fix the the date string of affected uutils * replace `‘` and `’` with `'`
25 lines
642 B
Rust
25 lines
642 B
Rust
use crate::common::util::*;
|
|
|
|
#[test]
|
|
fn test_users_no_arg() {
|
|
new_ucmd!().succeeds();
|
|
}
|
|
|
|
#[test]
|
|
#[cfg(any(target_vendor = "apple", target_os = "linux"))]
|
|
fn test_users_check_name() {
|
|
#[cfg(target_os = "linux")]
|
|
let util_name = util_name!();
|
|
#[cfg(target_vendor = "apple")]
|
|
let util_name = format!("g{}", util_name!());
|
|
|
|
// note: clippy::needless_borrow *false positive*
|
|
#[allow(clippy::needless_borrow)]
|
|
let expected = TestScenario::new(&util_name)
|
|
.cmd_keepenv(util_name)
|
|
.env("LC_ALL", "C")
|
|
.succeeds()
|
|
.stdout_move_str();
|
|
|
|
new_ucmd!().succeeds().stdout_is(&expected);
|
|
}
|