nushell/crates/nu-cli/tests/commands/random/integer.rs
smaydew 1ffbb66e64
Initial implementation of random integer subcommand. (#2489)
* Initial implementation of random integer subcommand.

* Added additional examples.

Co-authored-by: Stacy Maydew <stacy.maydew@starlab.io>
2020-09-04 07:23:02 +12:00

14 lines
268 B
Rust

use nu_test_support::{nu, pipeline};
#[test]
fn generates_an_integer() {
let actual = nu!(
cwd: ".", pipeline(
r#"
random integer --min 42 --max 43
"#
));
assert!(actual.out.contains("42") || actual.out.contains("43"));
}