blob: d64be3b3d9c508f842f012278886d74ec17bbb3c (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
 | # frozen_string_literal: true
module ActionDispatch
  module SystemTesting
    module TestHelpers
      module UndefMethods # :nodoc:
        extend ActiveSupport::Concern
        included do
          METHODS = %i(get post put patch delete).freeze
          METHODS.each do |verb|
            undef_method verb
          end
          def method_missing(method, *args, &block)
            if METHODS.include?(method)
              raise NoMethodError, "System tests cannot make direct requests via ##{method}; use #visit and #click_on instead. See http://www.rubydoc.info/github/teamcapybara/capybara/master#The_DSL for more information."
            else
              super
            end
          end
        end
      end
    end
  end
end
 |