aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2014-01-16 11:55:48 -0800
committerAaron Patterson <aaron.patterson@gmail.com>2014-01-16 11:55:48 -0800
commit44c51fc9cc7a0cdcf8b657e1900eb141083ef683 (patch)
tree14a35c52137a7025869734a7840b0a37cad61565 /activesupport/test
parent73ba2c14cd7d7dfb2d132b18c47ade995401736f (diff)
downloadrails-44c51fc9cc7a0cdcf8b657e1900eb141083ef683.tar.gz
rails-44c51fc9cc7a0cdcf8b657e1900eb141083ef683.tar.bz2
rails-44c51fc9cc7a0cdcf8b657e1900eb141083ef683.zip
define the delegate methods on one line. fixes #13724
sup haters
Diffstat (limited to 'activesupport/test')
-rw-r--r--activesupport/test/core_ext/module_test.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/activesupport/test/core_ext/module_test.rb b/activesupport/test/core_ext/module_test.rb
index 5b99fae411..4680fe5dfe 100644
--- a/activesupport/test/core_ext/module_test.rb
+++ b/activesupport/test/core_ext/module_test.rb
@@ -245,6 +245,16 @@ class ModuleTest < ActiveSupport::TestCase
end
end
+ def test_delegation_line_number
+ file, line = Someone.instance_method(:foo).source_location
+ assert_equal Someone::FAILED_DELEGATE_LINE, line
+ end
+
+ def test_delegate_line_with_nil
+ file, line = Someone.instance_method(:bar).source_location
+ assert_equal Someone::FAILED_DELEGATE_LINE_2, line
+ end
+
def test_delegation_exception_backtrace
someone = Someone.new("foo", "bar")
someone.foo