mirror of
https://github.com/nushell/nushell.git
synced 2024-11-23 08:53:29 +01:00
9876169f5d
* Add dice subcommand to random command * Update random dice test name * Stream results of random dice * Thanks Clippy!
14 lines
222 B
Rust
14 lines
222 B
Rust
use nu_test_support::{nu, pipeline};
|
|
|
|
#[test]
|
|
fn rolls_4_roll() {
|
|
let actual = nu!(
|
|
cwd: ".", pipeline(
|
|
r#"
|
|
random dice -d 4 -s 10 | count
|
|
"#
|
|
));
|
|
|
|
assert_eq!(actual.out, "4");
|
|
}
|