aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/test/tmail_test.rb
blob: 7d83a68ac7b0629ba94c27ae34985f280bf1aa8c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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