diff --git a/test/support/ruby_2_6_rails_4_2_patch.rb b/test/support/ruby_2_6_rails_4_2_patch.rb index 9e250339..768e9430 100644 --- a/test/support/ruby_2_6_rails_4_2_patch.rb +++ b/test/support/ruby_2_6_rails_4_2_patch.rb @@ -13,6 +13,12 @@ if RUBY_VERSION >= '2.6.0' end end else - puts 'Monkeypatch for ActionController::TestResponse no longer needed' + msg = 'Monkeypatch for ActionController::TestResponse not needed for '\ + 'Rails 5+. We can drop this patch once we drop support for Rails < 5. '\ + "Current Rails version: #{ENV['RAILS_VERSION']}" + + puts + puts "\033[33m **** #{msg} **** \033[0m" + puts end end