Skip to content

Instantly share code, notes, and snippets.

@eric-smartlove
Created June 20, 2012 19:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eric-smartlove/2961808 to your computer and use it in GitHub Desktop.
Save eric-smartlove/2961808 to your computer and use it in GitHub Desktop.
require 'test_helper'
module RailsTest
class TestableController < ActionController::Base
def test_action
render text: "Success"
end
end
class TestCaseTest < ActionController::TestCase
tests TestableController
# This test passes with journey 1.0.3 but fails with journey 1.0.4.
test "A controller with no route can be used in functional test" do
assert_nothing_raised do
get :test_action
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment