This gem has restored assigns as expected for controller tests, but not for integration tests. e.g.:
UsersIntegrationTest < ActionDispatch::IntegrationTest
test "get user" do
assert_equal joe, assigns(:user)
…
end
end
yields
NoMethodError: assigns has been extracted to a gem. To continue using it,
add `gem 'rails-controller-testing'` to your Gemfile.
I notice the integration test here doesn't include assigns, is it supported?