mirror of
https://github.com/nushell/nushell
synced 2024-11-16 09:47:57 +00:00
13 lines
223 B
Rust
13 lines
223 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 | length
|
|
"#
|
|
));
|
|
|
|
assert_eq!(actual.out, "4");
|
|
}
|