https://github.com/mluts/minitest-repeat
Adds a "repeat" functionality to minitest
https://github.com/mluts/minitest-repeat
gem minitest ruby
Last synced: over 1 year ago
JSON representation
Adds a "repeat" functionality to minitest
- Host: GitHub
- URL: https://github.com/mluts/minitest-repeat
- Owner: mluts
- License: mit
- Created: 2017-02-02T14:06:17.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-03T09:40:08.000Z (over 9 years ago)
- Last Synced: 2024-04-24T13:56:17.103Z (about 2 years ago)
- Topics: gem, minitest, ruby
- Language: Ruby
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# minitest-repeat
Adds a "repeat" functionality to minitest
# Usage
You should add this library to `$LOAD_PATH` or to Gemfile.
Use `-c` or `--count` argument to specify how many times you want your tests to
run.
# Example
This code runs test.rb 10 times
```
ruby test.rb --count 10
ruby test.rb -c 10
# With rake/tasklib
TESTOPTS="--count=10" rake test
```