From 965ae90bc6ff63c4aeee81cbc2137d8d7ef5ccdc Mon Sep 17 00:00:00 2001 From: Jeremy Kemper Date: Tue, 29 Aug 2006 08:24:04 +0000 Subject: Eliminate Active Support warnings. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4839 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activesupport/test/core_ext/name_error_test.rb | 7 ++----- activesupport/test/core_ext/object_and_class_ext_test.rb | 2 +- 2 files changed, 3 insertions(+), 6 deletions(-) (limited to 'activesupport/test') 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 diff --git a/activesupport/test/core_ext/object_and_class_ext_test.rb b/activesupport/test/core_ext/object_and_class_ext_test.rb index 73121ca966..9daf8d0ac4 100644 --- a/activesupport/test/core_ext/object_and_class_ext_test.rb +++ b/activesupport/test/core_ext/object_and_class_ext_test.rb @@ -78,7 +78,7 @@ class ObjectTests < Test::Unit::TestCase foo = Foo.new assert foo.extended_by.include?(Bar) foo.extend(Baz) - assert ([Bar, Baz] - foo.extended_by).empty?, "Expected Bar, Baz in #{foo.extended_by.inspect}" + assert(([Bar, Baz] - foo.extended_by).empty?, "Expected Bar, Baz in #{foo.extended_by.inspect}") end def test_extend_with_included_modules_from -- cgit v1.2.3