thoughtbot--shoulda-matchers/gemfiles
Elliot Winkler 12543ede2e Use same assertion class as Rails, if loaded
Given this scenario:

* Using Rails 4.1
* Gemfile has `gem 'shoulda-matchers', require: false`
* spec_helper has `require 'shoulda/matchers'` following
  `require 'rspec/rails'`
* Using Spring to run tests

matchers that delegate to assertions in Rails (e.g. `render_template`
and `route`) will fail in the wrong way if used. They fail because in
order to use these assertions, we expect that the assertions will
raise a specific exception, an exception that corresponds to whichever
test framework that Rails is using. For Rails versions that used
Test::Unit, this is Test::Unit::AssertionFailedError. For current Rails
versions, which now use Minitest, this exception is Minitest::Assertion.

The problem is that instead of asking Rails which exception class it's
using, we are trying to detect this exception class ourselves (for
cases in which Rails is not being used). This leads to the wrong class
being detected: when using a Rails version that uses Minitest, we choose
Test::Unit::AssertionFailedError as the class. This happens using the
exact scenario above because even though shoulda-matchers is loaded
after rspec-rails, rspec-rails itself defines
Test::Unit::AssertionFailedError.

Also add Cucumber tests that confirms this exact scenario works.
2014-06-27 14:06:47 -06:00
..
3.0.gemfile Generate docs using YARD 2014-06-20 16:41:32 -06:00
3.0.gemfile.lock Generate docs using YARD 2014-06-20 16:41:32 -06:00
3.1.gemfile Generate docs using YARD 2014-06-20 16:41:32 -06:00
3.1.gemfile.lock Generate docs using YARD 2014-06-20 16:41:32 -06:00
3.1_1.9.2.gemfile Generate docs using YARD 2014-06-20 16:41:32 -06:00
3.1_1.9.2.gemfile.lock Generate docs using YARD 2014-06-20 16:41:32 -06:00
3.2.gemfile Use same assertion class as Rails, if loaded 2014-06-27 14:06:47 -06:00
3.2.gemfile.lock Use same assertion class as Rails, if loaded 2014-06-27 14:06:47 -06:00
3.2_1.9.2.gemfile Use same assertion class as Rails, if loaded 2014-06-27 14:06:47 -06:00
3.2_1.9.2.gemfile.lock Use same assertion class as Rails, if loaded 2014-06-27 14:06:47 -06:00
4.0.0.gemfile Use same assertion class as Rails, if loaded 2014-06-27 14:06:47 -06:00
4.0.0.gemfile.lock Use same assertion class as Rails, if loaded 2014-06-27 14:06:47 -06:00
4.0.1.gemfile Use same assertion class as Rails, if loaded 2014-06-27 14:06:47 -06:00
4.0.1.gemfile.lock Use same assertion class as Rails, if loaded 2014-06-27 14:06:47 -06:00
4.1.gemfile Use same assertion class as Rails, if loaded 2014-06-27 14:06:47 -06:00
4.1.gemfile.lock Use same assertion class as Rails, if loaded 2014-06-27 14:06:47 -06:00