module RSpec::Rails::Matchers::RoutingMatchers

def be_routable

Other tags:
    Example: You can use route helpers provided by rspec-rails. -
def be_routable
  BeRoutableMatcher.new(self)
end

def route_to(*expected)

Other tags:
    See: https://api.rubyonrails.org/classes/ActionDispatch/Assertions/RoutingAssertions.html#method-i-assert_recognizes -
def route_to(*expected)
  RouteToMatcher.new(self, *expected)
end