Another test that the deprecation spout is plugged.

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5730 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Jeremy Kemper 2006-12-17 08:29:21 +00:00
parent 8a73d4fe6f
commit 7d49da95a9

@ -14,6 +14,10 @@ def home_url(greeting)
"http://example.com/#{greeting}"
end
def raises_name_error
this_method_doesnt_exist
end
def rescue_action(e) raise e end
end
@ -40,4 +44,11 @@ def test_deprecated_render_parameters
assert_equal "Living in a nested world", @response.body
end
def test_assertion_failed_error_doesnt_spout_deprecation_warnings
get :raises_name_error
rescue => e
error = Test::Unit::Error.new('testing ur doodz', e)
assert_not_deprecated { error.message }
end
end