aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/name_error_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/test/core_ext/name_error_test.rb')
-rw-r--r--activesupport/test/core_ext/name_error_test.rb7
1 files changed, 2 insertions, 5 deletions
diff --git a/activesupport/test/core_ext/name_error_test.rb b/activesupport/test/core_ext/name_error_test.rb
index e49b88eb38..d038875303 100644
--- a/activesupport/test/core_ext/name_error_test.rb
+++ b/activesupport/test/core_ext/name_error_test.rb
@@ -1,8 +1,6 @@
-require 'test/unit'
-require File.dirname(__FILE__) + '/../../lib/active_support/core_ext/name_error'
+require File.dirname(__FILE__) + '/../abstract_unit'
class NameErrorTest < Test::Unit::TestCase
-
def test_name_error_should_set_missing_name
begin
SomeNameThatNobodyWillUse____Really ? 1 : 0
@@ -13,7 +11,7 @@ class NameErrorTest < Test::Unit::TestCase
assert exc.missing_name?("NameErrorTest::SomeNameThatNobodyWillUse____Really")
end
end
-
+
def test_missing_method_should_ignore_missing_name
begin
some_method_that_does_not_exist
@@ -23,5 +21,4 @@ class NameErrorTest < Test::Unit::TestCase
assert ! exc.missing_name?(:Foo)
end
end
-
end