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

11 lines
211 B
Ruby
Raw Normal View History

module Shoulda
module Matchers
2015-09-30 19:17:53 +00:00
# @private
module Routing
def route(method, path, port: nil)
ActionController::RouteMatcher.new(self, method, path, port: port)
end
end
end
end