aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/test/quoting_test.rb
diff options
context:
space:
mode:
authorMichael Koziarski <michael@koziarski.com>2007-12-02 20:31:39 +0000
committerMichael Koziarski <michael@koziarski.com>2007-12-02 20:31:39 +0000
commitf1047173e8d2ccc3a65ed434445bd2807df86614 (patch)
tree85eace5382a1d72e2071bd336d858b68ceca8fa8 /actionmailer/test/quoting_test.rb
parentc84c0437d788f8534db79e0921a64df57c29f345 (diff)
downloadrails-f1047173e8d2ccc3a65ed434445bd2807df86614.tar.gz
rails-f1047173e8d2ccc3a65ed434445bd2807df86614.tar.bz2
rails-f1047173e8d2ccc3a65ed434445bd2807df86614.zip
Remove old tests which relied on @ being an ATOM to work around old Mail.app bugs. Closes #10317 [mikel]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8257 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionmailer/test/quoting_test.rb')
-rw-r--r--actionmailer/test/quoting_test.rb30
1 files changed, 4 insertions, 26 deletions
diff --git a/actionmailer/test/quoting_test.rb b/actionmailer/test/quoting_test.rb
index 4af9014e43..14981571df 100644
--- a/actionmailer/test/quoting_test.rb
+++ b/actionmailer/test/quoting_test.rb
@@ -70,36 +70,14 @@ class QuotingTest < Test::Unit::TestCase
assert_equal "Re: Test: \"\346\274\242\345\255\227\" mid \"\346\274\242\345\255\227\" tail", mail.subject
end
- def test_rb_decode
+ def test_decode
encoded, decoded = expected_base64_strings
- assert_equal decoded, TMail::Base64.rb_decode(encoded)
+ assert_equal decoded, TMail::Base64.decode(encoded)
end
- def test_rb_encode
+ def test_encode
encoded, decoded = expected_base64_strings
- assert_equal encoded.length, TMail::Base64.rb_encode(decoded).length
- end
-
- def test_rb_decode_should_match_c_decode_if_available
- encoded, decoded = expected_base64_strings
-
- begin
- require 'tmail/base64.so'
- assert_equal TMail::Base64.rb_decode(encoded), TMail::Base64.c_decode(encoded)
- rescue LoadError
- # No .so
- end
- end
-
- def test_rb_encode_should_match_c_encode_if_available
- encoded, decoded = expected_base64_strings
-
- begin
- require 'tmail/base64.so'
- assert_equal TMail::Base64.rb_encode(decoded), TMail::Base64.c_encode(decoded)
- rescue LoadError
- # No .so
- end
+ assert_equal encoded.length, TMail::Base64.encode(decoded).length
end
private