class ActionDispatch::Routing::MapperTest::FakeSet

Public Instance Methods

asts() click to toggle source
# File actionpack/test/dispatch/mapper_test.rb, line 33
def asts
  routes.map(&:path).map(&:spec)
end
conditions() click to toggle source
# File actionpack/test/dispatch/mapper_test.rb, line 25
def conditions
  routes.map(&:constraints)
end
defaults() click to toggle source
# File actionpack/test/dispatch/mapper_test.rb, line 21
def defaults
  routes.map(&:defaults)
end
dispatcher_class() click to toggle source
# File actionpack/test/dispatch/mapper_test.rb, line 17
def dispatcher_class
  RouteSet::Dispatcher
end
request_class() click to toggle source
# File actionpack/test/dispatch/mapper_test.rb, line 13
def request_class
  ActionDispatch::Request
end
requirements() click to toggle source
# File actionpack/test/dispatch/mapper_test.rb, line 29
def requirements
  routes.map(&:path).map(&:requirements)
end
resources_path_names() click to toggle source
# File actionpack/test/dispatch/mapper_test.rb, line 9
def resources_path_names
  {}
end