aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/multibyte_chars_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/multibyte_chars_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/multibyte_chars_test.rb')
-rw-r--r--activesupport/test/multibyte_chars_test.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/activesupport/test/multibyte_chars_test.rb b/activesupport/test/multibyte_chars_test.rb
index e36bd22081..971bd30781 100644
--- a/activesupport/test/multibyte_chars_test.rb
+++ b/activesupport/test/multibyte_chars_test.rb
@@ -10,7 +10,7 @@ class String
def __method_for_multibyte_testing_that_returns_nil!; end
end
-class MultibyteCharsTest < Test::Unit::TestCase
+class MultibyteCharsTest < ActiveSupport::TestCase
include MultibyteTestHelpers
def setup
@@ -90,7 +90,7 @@ class MultibyteCharsTest < Test::Unit::TestCase
end
-class MultibyteCharsUTF8BehaviourTest < Test::Unit::TestCase
+class MultibyteCharsUTF8BehaviourTest < ActiveSupport::TestCase
include MultibyteTestHelpers
def setup
@@ -457,7 +457,7 @@ end
# The default Multibyte Chars proxy has more features than the normal string implementation. Tests
# for the implementation of these features should run on all Ruby versions and shouldn't be tested
# through the proxy methods.
-class MultibyteCharsExtrasTest < Test::Unit::TestCase
+class MultibyteCharsExtrasTest < ActiveSupport::TestCase
include MultibyteTestHelpers
def test_upcase_should_be_unicode_aware