aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/template_assertions.rb
blob: 086c42fea745bde2623421c5b0dd31689b3bd406 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true
module ActionController
  module TemplateAssertions
    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