aboutsummaryrefslogblamecommitdiffstats
path: root/actionpack/lib/action_dispatch/system_testing/test_helpers/undef_methods.rb
blob: ef680cafed60f629b78e42b395a8fbcdf2b8e4d9 (plain) (tree)
1
2

                             























                                                        
# 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
            else
              super
            end
          end
        end
      end
    end
  end
end