module RSpec::Rails::HyperShortcut::AdditionalMethods

Private Instance Methods

method_missing(method_name,*args) click to toggle source
Calls superclass method
# File lib/rspec/rails/extra/routing/hyper_shortcut/additional_methods.rb, line 12
def method_missing(method_name,*args)
  if self.new.methods.include? method_name
    MatcherPlaceholder.new(method_name,args)
  else
    super(method_name,*args)
  end
end