Skip to content

Instantly share code, notes, and snippets.

@hopsoft
Last active August 29, 2015 14:13
Show Gist options
  • Select an option

  • Save hopsoft/c1f54cadca0ea34a19f6 to your computer and use it in GitHub Desktop.

Select an option

Save hopsoft/c1f54cadca0ea34a19f6 to your computer and use it in GitHub Desktop.
Fix routing for engine controller tests in Rails 4.0.xxx
require 'test_helper'
module ExampleEngine
class SomeControllerTest < ActionController::TestCase
setup do
@routes = ExampleEngine::Engine.routes
end
test "index response" do
get :index
assert_response :success
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment