aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/string_ext_test.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2008-11-15 13:28:46 -0800
committerJeremy Kemper <jeremy@bitsweat.net>2008-11-15 13:28:46 -0800
commitc5448c75abd7b69618346fe62deb7a7a3442f4e8 (patch)
treeff9bbd2f8e62d859b49d4afe6a3b552db648c804 /activesupport/test/core_ext/string_ext_test.rb
parent5fe543b6294df44d0e7670b78347564874a2f5e2 (diff)
downloadrails-c5448c75abd7b69618346fe62deb7a7a3442f4e8.tar.gz
rails-c5448c75abd7b69618346fe62deb7a7a3442f4e8.tar.bz2
rails-c5448c75abd7b69618346fe62deb7a7a3442f4e8.zip
Switch to AS::TestCase for assert_deprecated
Diffstat (limited to 'activesupport/test/core_ext/string_ext_test.rb')
-rw-r--r--activesupport/test/core_ext/string_ext_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/test/core_ext/string_ext_test.rb b/activesupport/test/core_ext/string_ext_test.rb
index b086c957fe..e232bf8384 100644
--- a/activesupport/test/core_ext/string_ext_test.rb
+++ b/activesupport/test/core_ext/string_ext_test.rb
@@ -207,7 +207,7 @@ class StringBehaviourTest < Test::Unit::TestCase
end
end
-class CoreExtStringMultibyteTest < Test::Unit::TestCase
+class CoreExtStringMultibyteTest < ActiveSupport::TestCase
UNICODE_STRING = 'こにちわ'
ASCII_STRING = 'ohayo'
BYTE_STRING = "\270\236\010\210\245"
@@ -253,4 +253,4 @@ class CoreExtStringMultibyteTest < Test::Unit::TestCase
assert UNICODE_STRING.mb_chars.kind_of?(String)
end
end
-end \ No newline at end of file
+end