2020-05-25 17:05:26 +00:00
|
|
|
use crate::common::util::*;
|
2020-05-03 20:38:46 +00:00
|
|
|
|
|
|
|
#[test]
|
2021-05-30 05:10:54 +00:00
|
|
|
fn test_users_no_arg() {
|
2021-04-17 23:28:06 +00:00
|
|
|
new_ucmd!().succeeds();
|
2020-05-03 20:38:46 +00:00
|
|
|
}
|
2021-05-28 23:51:00 +00:00
|
|
|
|
2020-05-03 20:38:46 +00:00
|
|
|
#[test]
|
2021-05-28 23:51:00 +00:00
|
|
|
#[cfg(any(target_vendor = "apple", target_os = "linux"))]
|
2020-05-03 20:38:46 +00:00
|
|
|
fn test_users_check_name() {
|
2021-05-28 23:51:00 +00:00
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
let util_name = util_name!();
|
|
|
|
#[cfg(target_vendor = "apple")]
|
|
|
|
let util_name = format!("g{}", util_name!());
|
2020-05-03 20:38:46 +00:00
|
|
|
|
2021-06-06 20:07:48 +00:00
|
|
|
// note: clippy::needless_borrow *false positive*
|
|
|
|
#[allow(clippy::needless_borrow)]
|
2021-05-28 23:51:00 +00:00
|
|
|
let expected = TestScenario::new(&util_name)
|
|
|
|
.cmd_keepenv(util_name)
|
2021-06-21 22:22:30 +00:00
|
|
|
.env("LC_ALL", "C")
|
2021-05-28 23:51:00 +00:00
|
|
|
.succeeds()
|
|
|
|
.stdout_move_str();
|
2020-05-03 20:38:46 +00:00
|
|
|
|
2021-05-28 23:51:00 +00:00
|
|
|
new_ucmd!().succeeds().stdout_is(&expected);
|
2020-05-03 20:38:46 +00:00
|
|
|
}
|