From 8139d727c548863ea8f986d6e6a2249fe5bd83f2 Mon Sep 17 00:00:00 2001 From: Steve Faulkner Date: Wed, 26 Jun 2013 12:02:00 -0500 Subject: Add DelegationError class. Rasied by delegation to a nil object --- activesupport/test/core_ext/module_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'activesupport/test') diff --git a/activesupport/test/core_ext/module_test.rb b/activesupport/test/core_ext/module_test.rb index 8872611fb1..ecef7754aa 100644 --- a/activesupport/test/core_ext/module_test.rb +++ b/activesupport/test/core_ext/module_test.rb @@ -207,7 +207,7 @@ class ModuleTest < ActiveSupport::TestCase def test_delegation_without_allow_nil_and_nil_value david = Someone.new("David") - assert_raise(RuntimeError) { david.street } + assert_raise(DelegationError) { david.street } end def test_delegation_to_method_that_exists_on_nil -- cgit v1.2.3