aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test
diff options
context:
space:
mode:
authorCarl Lerche <carllerche@mac.com>2009-05-26 15:03:09 -0700
committerCarl Lerche <carllerche@mac.com>2009-05-26 15:03:09 -0700
commita1f280e83d2b134e23897d4de457d76fb0095768 (patch)
treefd51ff61395ba4ef39996684dd5b53d2957369fb /actionpack/test
parent1358f77745c7a4afab0dab7796aa63072c9d323a (diff)
downloadrails-a1f280e83d2b134e23897d4de457d76fb0095768.tar.gz
rails-a1f280e83d2b134e23897d4de457d76fb0095768.tar.bz2
rails-a1f280e83d2b134e23897d4de457d76fb0095768.zip
Got all the dispatch tests running on new base
Diffstat (limited to 'actionpack/test')
-rw-r--r--actionpack/test/dispatch/show_exceptions_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/test/dispatch/show_exceptions_test.rb b/actionpack/test/dispatch/show_exceptions_test.rb
index 0c0c087340..ce1973853e 100644
--- a/actionpack/test/dispatch/show_exceptions_test.rb
+++ b/actionpack/test/dispatch/show_exceptions_test.rb
@@ -61,7 +61,7 @@ class ShowExceptionsTest < ActionController::IntegrationTest
get "/not_found"
assert_response 404
- assert_match /ActionController::UnknownAction/, body
+ assert_match /#{ActionController::UnknownAction.name}/, body
get "/method_not_allowed"
assert_response 405
@@ -99,7 +99,7 @@ class ShowExceptionsTest < ActionController::IntegrationTest
get "/not_found"
assert_response 404
- assert_match /ActionController::UnknownAction/, body
+ assert_match /#{ActionController::UnknownAction.name}/, body
get "/method_not_allowed"
assert_response 405