nushell-plugins/nushell/crates/nu-command/tests/commands/random/dice.rs
2025-06-27 02:33:44 +01:00

10 lines
177 B
Rust

use nu_test_support::nu;
#[test]
fn rolls_4_roll() {
let actual = nu!(r#"
random dice --dice 4 --sides 10 | length
"#);
assert_eq!(actual.out, "4");
}