mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
5446ecd5b9
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4523 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
13 lines
387 B
Ruby
13 lines
387 B
Ruby
require "#{File.dirname(__FILE__)}/abstract_unit"
|
|
|
|
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
|