From 1de3bce9adeb99c9543f47f6afc2305eb2cf961d Mon Sep 17 00:00:00 2001 From: "(no author)" <(no author)@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> Date: Fri, 21 Jan 2005 08:15:57 +0000 Subject: This commit was manufactured by cvs2svn to create branch 'ruby_1_8'. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@7801 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/net/imap/test_imap.rb | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 test/net/imap/test_imap.rb diff --git a/test/net/imap/test_imap.rb b/test/net/imap/test_imap.rb new file mode 100644 index 000000000..aa4215224 --- /dev/null +++ b/test/net/imap/test_imap.rb @@ -0,0 +1,14 @@ +require "net/imap" +require "test/unit" + +class IMAPTest < Test::Unit::TestCase + def test_encode_utf7 + s = Net::IMAP.encode_utf7("\357\274\241\357\274\242\357\274\243") + assert_equal("&,yH,Iv8j-", s) + end + + def test_decode_utf7 + s = Net::IMAP.decode_utf7("&,yH,Iv8j-") + assert_equal("\357\274\241\357\274\242\357\274\243", s) + end +end -- cgit