mirror of
https://github.com/TracksApp/tracks.git
synced 2026-03-10 22:52:37 +01:00
also removes deprecated methods. All tests pass (at least on my machine!) and raise no deprecation warnings. git-svn-id: http://www.rousette.org.uk/svn/tracks-repos/trunk@365 a4c988fc-2ded-0310-b66e-134b36920a42
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
|