mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-21 01:30:12 +01:00
Changes you will need to make: * In your environment.rb, you will need to update references to a few files per environment.rb.tmpl * In your environment.rb, you will need to specify the local time zone of the computer that is running your Tracks install. Other notes on my changes: * Modified our code to take advantage of Rails 2.1's slick time zone support. * Upgraded will_paginate for compatibility * Hacked the Selenium on Rails plugin, which has not been updated in some time and does not support Rails 2.1 * Verified that all tests pass on my machine, including Selenium tests -- I'd like confirmation from others, too.
22 lines
802 B
Ruby
22 lines
802 B
Ruby
require '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
|
|
|
|
def test_nested_attachments_are_recognized_correctly
|
|
fixture = File.read("#{File.dirname(__FILE__)}/fixtures/raw_email_with_nested_attachment")
|
|
mail = TMail::Mail.parse(fixture)
|
|
assert_equal 2, mail.attachments.length
|
|
assert_equal "image/png", mail.attachments.first.content_type
|
|
assert_equal 1902, mail.attachments.first.length
|
|
assert_equal "application/pkcs7-signature", mail.attachments.last.content_type
|
|
end
|
|
end
|