Changelog for
ruby2.7-rubygem-minitest-5_3_3-5.3.3-1.105.x86_64.rpm :
* Mon Apr 21 2014 cooloAATTsuse.com- updated to version 5.3.3
* 1 bug fix:
* Fixed using expectations w/ DSL in Test class w/o describe. (blowmage+others)
* Fixed doco on Assertions.assertions. (xaviershay)
* Sat Mar 15 2014 cooloAATTsuse.com- updated to version 5.3.1
* 1 minor enhancement:
* Modified verbage on bad \'let\' names to be more helpful. (Archytaus)
* Mocked methods can take a block to verify state. Seattle.rb 12 bday present from ernie! Thanks!!
* 1 bug fix:
* Fixed 2 cases still using MiniTest. (mikesea)
* Sun Feb 23 2014 cooloAATTsuse.com- updated to version 5.2.3
* 1 bug fix:
* Fixed Spec#let check to allow overriding of other lets. (mvz) === 5.2.2 / 2014-01-22
* 1 minor enhancement:
* Spec#let raises ArgumentError if you override _any_ instance method (except subject). (rynr)
* 1 bug fix:
* Fixed up benchmark spec doco and added a test to demonstrate. (bhenderson)
* Mon Jan 20 2014 cooloAATTsuse.com- updated to version 5.2.1
* 1 bug fix:
* Properly deal with horrible mix of runtime load errors + other at_exit handlers. (dougo/chqr)
* Mon Dec 16 2013 cooloAATTsuse.com- updated to version 5.2.0
* 1 minor enhancement:
* Change expectations to allow calling most on procs (but not calling the proc). (bhenderson+others)
* Mon Dec 09 2013 cooloAATTsuse.com- updated to version 5.1.0
* 1 minor enhancement:
* Use a Queue for scheduling parallel tests. (tenderlove)
* 1 bug fix:
* Fixed misspelling in doco. (amatsuda)
* Mon Sep 23 2013 cooloAATTsuse.com- updated to version 5.0.8
* 1 bug fix:
* Fixed siginfo handler by rearranging reporters and fixing to_s. (tenderlove)
* Sat Sep 07 2013 cooloAATTsuse.com- updated to version 5.0.7
* 2 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.
* Fri Jul 12 2013 cooloAATTsuse.com- updated to version 5.0.6
* 3 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) === 5.0.5 / 2013-06-20
* 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)
* Sun Jun 09 2013 cooloAATTsuse.com- updated to version 5.0.4
* 5 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.