0.0
No commit activity in last 3 years
No release in over 3 years
Allows to run your minitest suites more than one time
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Runtime

~> 5.0
 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