Merged r6324 and r6325 from trunk (#8651).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/1.2-stable@7766 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang
2011-11-11 11:35:03 +00:00
parent c605477da5
commit 03b2162e6c
3 changed files with 251 additions and 1 deletions

View File

@@ -278,6 +278,16 @@ class MailHandlerTest < ActiveSupport::TestCase
assert_kind_of Issue, issue
assert_equal tracker, issue.tracker
end
def test_add_issue_from_apple_mail
issue = submit_email('apple_mail_with_attachment.eml', :issue => {:project => 'ecookbook'})
assert_kind_of Issue, issue
assert_equal 1, issue.attachments.size
attachment = issue.attachments.first
assert_equal 'paella.jpg', attachment.filename
assert_equal 10790, attachment.filesize
end
def test_should_ignore_emails_from_emission_address
Role.anonymous.add_permission!(:add_issues)