Namespace
Methods
A
T
Constants
Router = ActionDispatch::Routing::RouteSet.new
 
SprocketsApp = lambda { |env| [200, {"Content-Type" => "text/html"}, ["#{env["SCRIPT_NAME"]} -- #{env["PATH_INFO"]}"]] }
 
APP = RoutedRackApp.new Router
 
Instance Public methods
app()
# File actionpack/test/dispatch/mount_test.rb, line 45
def app
  APP
end
test_app_name_is_properly_generated_when_engine_is_mounted_in_resources()
# File actionpack/test/dispatch/mount_test.rb, line 49
def test_app_name_is_properly_generated_when_engine_is_mounted_in_resources
  assert Router.mounted_helpers.method_defined?(:user_fake_mounted_at_resource),
        "A mounted helper should be defined with a parent's prefix"
  assert Router.named_routes.routes[:user_fake_mounted_at_resource],
        "A named route should be defined with a parent's prefix"
end
test_mounting_at_root_path()
# File actionpack/test/dispatch/mount_test.rb, line 56
def test_mounting_at_root_path
  get "/omg"
  assert_equal " -- /omg", response.body
end
test_mounting_sets_script_name()
# File actionpack/test/dispatch/mount_test.rb, line 61
def test_mounting_sets_script_name
  get "/sprockets/omg"
  assert_equal "/sprockets -- /omg", response.body
end
test_mounting_with_shorthand()
# File actionpack/test/dispatch/mount_test.rb, line 76
def test_mounting_with_shorthand
  get "/shorthand/omg"
  assert_equal "/shorthand -- /omg", response.body
end
test_mounting_works_with_nested_script_name()
# File actionpack/test/dispatch/mount_test.rb, line 66
def test_mounting_works_with_nested_script_name
  get "/foo/sprockets/omg", {}, 'SCRIPT_NAME' => '/foo', 'PATH_INFO' => '/sprockets/omg'
  assert_equal "/foo/sprockets -- /omg", response.body
end
test_mounting_works_with_scope()
# File actionpack/test/dispatch/mount_test.rb, line 71
def test_mounting_works_with_scope
  get "/its_a/sprocket/omg"
  assert_equal "/its_a/sprocket -- /omg", response.body
end
test_mounting_works_with_via()
# File actionpack/test/dispatch/mount_test.rb, line 81
def test_mounting_works_with_via
  get "/getfake"
  assert_equal "OK", response.body

  post "/getfake"
  assert_response :not_found
end
test_with_fake_engine_does_not_call_invalid_method()
# File actionpack/test/dispatch/mount_test.rb, line 89
def test_with_fake_engine_does_not_call_invalid_method
  get "/fakeengine"
  assert_equal "OK", response.body
end