nushell/crates/nu-cli/tests/commands/random/dice.rs

14 lines
222 B
Rust
Raw Normal View History

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");
}