aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/object_and_class_ext_test.rb
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2012-01-05 17:12:46 -0800
committerAaron Patterson <aaron.patterson@gmail.com>2012-01-05 17:12:46 -0800
commitb8d8c50785fdad21a524fe5149621f91c97583cd (patch)
treef600ae75f68daf64a3f144d0a2d285f1b3e77328 /activesupport/test/core_ext/object_and_class_ext_test.rb
parenta2d68c1086951d831463ccedd7bf872c50be9ade (diff)
downloadrails-b8d8c50785fdad21a524fe5149621f91c97583cd.tar.gz
rails-b8d8c50785fdad21a524fe5149621f91c97583cd.tar.bz2
rails-b8d8c50785fdad21a524fe5149621f91c97583cd.zip
use AS::TestCase as the base class
Diffstat (limited to 'activesupport/test/core_ext/object_and_class_ext_test.rb')
-rw-r--r--activesupport/test/core_ext/object_and_class_ext_test.rb4
1 files changed, 2 insertions, 2 deletions
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 782a01213d..b027fccab3 100644
--- a/activesupport/test/core_ext/object_and_class_ext_test.rb
+++ b/activesupport/test/core_ext/object_and_class_ext_test.rb
@@ -59,7 +59,7 @@ class ObjectTests < ActiveSupport::TestCase
end
end
-class ObjectInstanceVariableTest < Test::Unit::TestCase
+class ObjectInstanceVariableTest < ActiveSupport::TestCase
def setup
@source, @dest = Object.new, Object.new
@source.instance_variable_set(:@bar, 'bar')
@@ -91,7 +91,7 @@ class ObjectInstanceVariableTest < Test::Unit::TestCase
end
end
-class ObjectTryTest < Test::Unit::TestCase
+class ObjectTryTest < ActiveSupport::TestCase
def setup
@string = "Hello"
end