From 43c34e20d2698e04c398496e4cbc4e2271619297 Mon Sep 17 00:00:00 2001 From: Nicholas Seckar Date: Sat, 15 Oct 2005 02:24:05 +0000 Subject: Updated whiny nil to be more concise and useful. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2602 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activesupport/test/whiny_nil_test.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'activesupport/test') diff --git a/activesupport/test/whiny_nil_test.rb b/activesupport/test/whiny_nil_test.rb index a3bedd7c14..9ed31bfef5 100644 --- a/activesupport/test/whiny_nil_test.rb +++ b/activesupport/test/whiny_nil_test.rb @@ -15,19 +15,21 @@ class WhinyNilTest < Test::Unit::TestCase def test_unchanged nil.method_thats_not_in_whiners rescue NoMethodError => nme - assert_match(/nil:NilClass/, nme.message) + assert_match(/nil.method_thats_not_in_whiners/, nme.message) end def test_active_record nil.save! rescue NoMethodError => nme assert(!(nme.message =~ /nil:NilClass/)) + assert_match(/nil\.save!/, nme.message) end def test_array nil.each rescue NoMethodError => nme assert(!(nme.message =~ /nil:NilClass/)) + assert_match(/nil\.each/, nme.message) end def test_id -- cgit v1.2.3