nushell/crates/nu-command/tests/commands/random/mod.rs
Solomon d83781ddec
support filesize arguments in random binary/chars (#14068)
Closes #13920

# User-Facing Changes

`random binary` and `random chars` now support filesize arguments:

```nushell
random binary 1kb
random chars --length 1kb
```
2024-10-12 14:49:05 +08:00

8 lines
73 B
Rust

mod binary;
mod bool;
mod chars;
mod dice;
mod float;
mod int;
mod uuid;