2007-02-09 09:04:31 +01:00
|
|
|
require "#{File.dirname(__FILE__)}/abstract_unit"
|
2007-01-22 14:43:50 +01:00
|
|
|
|
|
|
|
class TMailMailTest < Test::Unit::TestCase
|
|
|
|
def test_body
|
|
|
|
m = TMail::Mail.new
|
|
|
|
expected = 'something_with_underscores'
|
|
|
|
m.encoding = 'quoted-printable'
|
|
|
|
quoted_body = [expected].pack('*M')
|
|
|
|
m.body = quoted_body
|
|
|
|
assert_equal "something_with_underscores=\n", m.quoted_body
|
|
|
|
assert_equal expected, m.body
|
|
|
|
end
|
|
|
|
end
|