rails-forward_compatible_controller_tests
rails-forward_compatible_controller_tests copied to clipboard
Back-porting Rails 5 controller & integration tests into Rails 4
With `raise_exception` set, I had a bunch of controllers that weren't erroring out as I expected. I found [this code](https://github.com/appfolio/rails-forward_compatible_controller_tests/blob/master/lib/rails/forward_compatible_controller_tests.rb#L84-L86) that seems to assume that if it specifies a `format`,...
Requiring `rails/forward_compatible_controller_tests` in the `spec_helper.rb` will fail in the RSpec context as the Rails application is not yet initialized. Loading the gem via `rails_helper.rb` after the framework was initialized is...