All Versions
129
Latest Version
Avg Release Cycle
91 days
Latest Release
1390 days ago
Changelog History
Page 6
Changelog History
Page 6
-
v5.2.0 Changes
December 13, 20131 minor enhancement:
- Change expectations to allow calling most on procs (but not calling the proc). (bhenderson+others)
-
v5.1.0 Changes
December 05, 20131 minor enhancement:
- Use a Queue for scheduling parallel tests. (tenderlove)
1 bug fix:
- Fixed misspelling in doco. (amatsuda)
-
v5.0.8 Changes
September 20, 20131 bug fix:
- Fixed siginfo handler by rearranging reporters and fixing to_s. (tenderlove)
-
v5.0.7 Changes
September 05, 20132 minor enhancements:
- Added clarification about the use of thread local variables in expectations. (jemc)
- Added extra message about skipped tests, if any. Disable globally with $MT_NO_SKIP_MSG.
๐ 2 bug fixes:
- Only require minitest, not minitest/autorun in pride_plugin. (judofyr)
- Require rubygems in load_plugins in case you're not using minitest/autorun.
-
v5.0.6 Changes
June 28, 20133 minor enhancements:
- Allow stub to pass args to blocks. (swindsor)
- Improved warning message about minitest/autorun to address 1.9's minitest/autorun.
- Made minitest/test require minitest as needed. For lib writers. (erikh)
1 bug fix:
- Fixed missing require in minitest/test. (erikh)
-
v5.0.5 Changes
June 20, 2013๐ 6 bug fixes:
- DOH! Fixed the rest of the new casing on Minitest. (splattael)
- Fixed typo on minitest/mock rdoc. (mrgilman/guiceolin)
- Make Spec::DSL.describe_stack thread local to avoid failing on my own tests.
- Make a fake Time.now local to the tests so they won't interfere with real reporter timings.
- Make everything mockable by wrapping all 'special' methods in a smarter wrapper. (bestie)
- Raise ArgumentError if let name starts with 'test'. (johnmaxwell)
-
v5.0.4 Changes
June 07, 20135 minor enhancements:
- Added AbstractReporter, defining required Reporter API to quack properly.
- Added doco for writing reporters.
- Refactored Reporter into ProgressReporter and SummaryReporter. (idea: phiggins, code:me+scotch)
- Refactored SummaryReporter pushing up to StatisticsReporter. (phiggins)
- Removed Reporter#run_and_report... cleaner, but doesn't "fit" in the API.
-
v5.0.3 Changes
May 29, 20134 minor enhancements:
- Added Runnable.with_info_handler and Runnable.on_signal.
- Moved io.sync restore to Reporter#run_and_report.
- Refactored inner loop of Reporter#report to #to_s. Callable for status updates.
- Restored MT4's mid-run report (t). (tenderlove).
-
v5.0.2 Changes
May 20, 2013๐ 3 bug fixes:
- Gem.find_files is smarter than I remember... cause I wrote it that way. sigh I'm getting old.
- Pride wasn't doing puts through its #io. (tmiller/tenderlove)
- Replaced Runnable#dup and Test#dup with marshal_dump/load. Too many problems cropping up on untested rails code. (tenderlove/rubys)
-
v5.0.1 Changes
May 14, 2013๐ 2 bug fixes:
- Documented Assertions' need for @assertions to be defined by the includer.
- Only load one plugin version per name. Tries for latest.