rails/actionpack/lib/action_controller/template_assertions.rb
Alan Wu 1db8438d10 Remove compatibility module from docs [ci skip]
This module exists to warn old users. I think we should remove
it from the docs so we don't advertise it.
2019-05-22 11:58:14 -04:00

12 lines
330 B
Ruby

# frozen_string_literal: true
module ActionController
module TemplateAssertions # :nodoc:
def assert_template(options = {}, message = nil)
raise NoMethodError,
"assert_template has been extracted to a gem. To continue using it,
add `gem 'rails-controller-testing'` to your Gemfile."
end
end
end