All Versions
129
Latest Version
Avg Release Cycle
91 days
Latest Release
169 days ago
Changelog History
Page 9
Changelog History
Page 9
-
v3.4.0 Changes
September 05, 20122 minor enhancements:
- assert_output can now take regexps for expected values. (suggested by stomar)
- Clarified that ruby 1.9/2.0's phony gems cause serious confusion for rubygems.
-
v3.3.0 Changes
July 26, 20121 major enhancement:
- Deprecated add_(setup|teardown)hook in favor of (before|after)(setup|teardown) [2013-01-01]
4 minor enhancements:
- Refactored deprecated hook system into a module.
- Refactored lifecycle hooks into a module.
- Removed after_setup/before_teardown + run_X_hooks from Spec.
- Spec#before/after now do a simple define_method and call super. DUR.
๐ 2 bug fixes:
- Fixed #passed? when used against a test that called flunk. (floehopper)
- Fixed rdoc bug preventing doco for some expectations. (stomar).
-
v3.2.0 Changes
June 26, 20121 minor enhancement:
- Stubs now yield self. (peterhellberg)
1 bug fix:
- Fixed verbose test that only fails when run in verbose mode. mmmm irony.
-
v3.1.0 Changes
June 13, 20122 minor enhancements:
- Removed LONG deprecated Unit.out accessor
- Removed generated method name munging from minitest/spec. (ordinaryzelig/tenderlove)
-
v3.0.1 Changes
May 24, 20121 bug fix:
- I'm a dumbass and refactored into Mock#call. Renamed to #__call so you can mock #call. (mschuerig)
-
v3.0.0 Changes
May 08, 20123 major enhancements:
- Added Object#stub (in minitest/mock.rb).
- Mock#expect mocks are used in the order they're given.
- Mock#verify now strictly compares against expect calls.
3 minor enhancements:
- Added caller to deprecation message.
- Mock error messages are much prettier.
- Removed String check for RHS of assert/refute_match. This lets #to_str work properly.
1 bug fix:
- Support drive letter on Windows. Patch provided from MRI by Usaku NAKAMURA. (ayumin)
-
v2.12.1 Changes
April 10, 20121 minor enhancement:
- Added ruby releases to History.txt to make it easier to see what you're missing
1 bug fix:
- Rolled my own deprecate msg to allow MT to work with rubygems < 1.7
-
v2.12.0 Changes
April 03, 20124 minor enhancements:
- ::it returns test method name (wojtekmach)
- Added #record method to runner so runner subclasses can cleanly gather data.
- Added Minitest alias for MiniTest because even I forget.
- Deprecated assert_block!! Yay!!!
1 bug fix:
- Fixed warning in i_suck_and_my_tests_are_order_dependent! (phiggins)
-
v2.11.4 Changes
March 20, 20122 minor enhancements:
- Updated known extensions
- You got your unicode in my tests! You got your tests in my unicode! (fl00r)
1 bug fix:
- Fixed MiniTest::Mock example in the readme. (conradwt)
-
v2.11.3 Changes
February 29, 2012๐ 2 bug fixes:
- Clarified that assert_raises returns the exception for further testing
- Fixed assert_in_epsilon when both args are negative. (tamc)