[Rails5] Add `rails-controller-testing` gem
In Rails 5.0 `assert_template` and `assigns()` have been extracted to the `rails-controller-testing` gem. https://github.com/rails/rails/pull/20138/files This commit adds this gem for rails5.
Showing
... | ... | @@ -384,6 +384,7 @@ group :test do |
gem 'email_spec', '~> 1.6.0' | ||
gem 'json-schema', '~> 2.8.0' | ||
gem 'webmock', '~> 2.3.2' | ||
gem 'rails-controller-testing' if rails5? # Rails5 only gem. | ||
gem 'test_after_commit', '~> 1.1' unless rails5? # Remove this gem when migrated to rails 5.0. It's been integrated to rails 5.0. | ||
gem 'sham_rack', '~> 1.3.6' | ||
gem 'concurrent-ruby', '~> 1.0.5' | ||
... | ... |
Please register or sign in to comment