diff options
Diffstat (limited to 'test/unit/mail_handler_test.rb')
-rw-r--r-- | test/unit/mail_handler_test.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/unit/mail_handler_test.rb b/test/unit/mail_handler_test.rb index 6c3aefc41..1a3469031 100644 --- a/test/unit/mail_handler_test.rb +++ b/test/unit/mail_handler_test.rb @@ -856,6 +856,20 @@ class MailHandlerTest < ActiveSupport::TestCase assert_equal issue.subject, 'New ticket on a given project with a very long subject line which exceeds 255 chars and should not be ignored but chopped off. And if the subject line is still not long enough, we just add more text. And more text. Wow, this is really annoying. Especially, if you have nothing to say...'[0,255] end + def test_first_keyword_should_be_matched + issue = submit_email('ticket_with_duplicate_keyword.eml', :allow_override => 'priority') + assert issue.is_a?(Issue) + assert_equal 'High', issue.priority.name + end + + def test_keyword_after_delimiter_should_be_ignored + with_settings :mail_handler_body_delimiters => "== DELIMITER ==" do + issue = submit_email('ticket_with_keyword_after_delimiter.eml', :allow_override => 'priority') + assert issue.is_a?(Issue) + assert_equal 'Normal', issue.priority.name + end + end + def test_new_user_from_attributes_should_return_valid_user to_test = { # [address, name] => [login, firstname, lastname] |