RR v1.0.5 Release Notes

Release Date: 2013-03-28 // about 11 years ago
    • Compatibility with RSpec-2. There are now two adapters for RSpec, one that works with RSpec-1 and a new one that works with RSpec-2. Currently, saying RSpec.configure {|c| c.mock_with(:rr) } still uses RSpec-1; to use the new one, you say RSpec.configure {|c| c.mock_framework = RR::Adapters::RSpec2 }. ([#66][xi66], [#68][xi68], [#80][xi80]) [[@njay][njay], [@james2m][james2m]]
    • ๐Ÿ›  Fix MethodMissingInjection so that [stub].flatten works without throwing a NoMethodError (undefined methodto_ary'`) error under Ruby 1.9 ([#44][xi44])
    • โœ… Raise a MiniTest::Assertion error in the MiniTest adapter so that mock failures appear in the output as failures rather than uncaught exceptions ([#69][xi69]) [[@jayferd][jayferd]]
    • Completely remove leftover #new_instance_of method, and also remove mention of #new_instance_of from the README
    • ๐Ÿ›  Fix tests so they all work and pass again