1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 03:27:44 +00:00

documentation for usual macros

- removed repeat_str helper as it's now part of std
- added docstrings for usual macros and test utils
This commit is contained in:
Neculai Balaban 2021-03-22 12:13:38 +02:00
parent 45acb087b8
commit 93c7cbe65e
4 changed files with 66 additions and 11 deletions

View file

@ -9,7 +9,7 @@ fn test_default_mode() {
// fail on long inputs
new_ucmd!()
.args(&[repeat_str("test", 20000)])
.args(&["test".repeat(20000)])
.fails()
.no_stdout();
}