thoughtbot--shoulda-matchers/lib/shoulda/matchers/routing.rb

11 lines
190 B
Ruby

module Shoulda
module Matchers
module Routing
# @private
def route(method, path)
ActionController::RouteMatcher.new(method, path, self)
end
end
end
end