@@ -383,6 +383,10 @@ def test_message_posted_message_id
383
383
end
384
384
end
385
385
386
+ def test_message_posted_should_include_recipients_on_mail_footer
387
+ flunk 'Not Implemented'
388
+ end
389
+
386
390
def test_reply_posted_message_id
387
391
set_tmp_attachments_directory
388
392
message = Message . find ( 3 )
@@ -704,6 +708,12 @@ def test_document_added_should_include_recipients_on_mail_footer
704
708
end
705
709
end
706
710
711
+ def test_documents_file_added_should_include_recipients_on_mail_footer
712
+ # def test_attachments_added_should_include_recipients_on_mail_footer
713
+ # Mailer.deliver_attachments_added(document, author)
714
+ flunk 'Not Implemented'
715
+ end
716
+
707
717
def test_issue_should_send_email_notification_with_suppress_empty_fields
708
718
ActionMailer ::Base . deliveries . clear
709
719
with_settings :notified_events => %w( issue_added ) do
@@ -754,6 +764,11 @@ def test_version_file_added
754
764
end
755
765
end
756
766
767
+ def test_version_file_added_should_include_recipients_on_mail_footer
768
+ # def test_attachments_added_should_include_recipients_on_mail_footer
769
+ flunk 'Not Implemented'
770
+ end
771
+
757
772
def test_project_file_added
758
773
attachements = [ Attachment . find_by_container_type ( 'Project' ) ]
759
774
assert Mailer . deliver_attachments_added ( attachements )
@@ -764,6 +779,11 @@ def test_project_file_added
764
779
end
765
780
end
766
781
782
+ def test_project_file_added_should_include_recipients_on_mail_footer
783
+ # def test_attachments_added_should_include_recipients_on_mail_footer
784
+ flunk 'Not Implemented'
785
+ end
786
+
767
787
def test_news_added_should_notify_project_news_watchers
768
788
set_tmp_attachments_directory
769
789
user1 = User . generate!
@@ -788,6 +808,14 @@ def test_news_added_should_notify_project_news_watchers
788
808
end
789
809
end
790
810
811
+ def test_news_added_should_include_recipients_on_mail_footer
812
+ flunk 'Not Implemented'
813
+ end
814
+
815
+ def test_news_comments_added_should_include_recipients_on_mail_footer
816
+ flunk 'Not Implemented'
817
+ end
818
+
791
819
def test_wiki_content_added
792
820
content = WikiContent . find ( 1 )
793
821
assert_difference 'ActionMailer::Base.deliveries.size' , 2 do
@@ -814,6 +842,10 @@ def test_wiki_content_added_should_notify_mentioned_users_in_content
814
842
assert_include User . find ( 1 ) . mail , recipients
815
843
end
816
844
845
+ def test_wiki_content_added_should_include_recipients_on_mail_footer
846
+ flunk 'Not Implemented'
847
+ end
848
+
817
849
def test_wiki_content_updated
818
850
content = WikiContent . find ( 1 )
819
851
assert Mailer . deliver_wiki_content_updated ( content )
@@ -839,6 +871,10 @@ def test_wiki_content_updated_should_notify_mentioned_users_in_updated_content
839
871
assert_include User . find ( 1 ) . mail , recipients
840
872
end
841
873
874
+ def test_wiki_content_updated_should_include_recipients_on_mail_footer
875
+ flunk 'Not Implemented'
876
+ end
877
+
842
878
def test_register
843
879
token = Token . find ( 1 )
844
880
assert Mailer . deliver_register ( token . user , token )
@@ -849,6 +885,10 @@ def test_register
849
885
end
850
886
end
851
887
888
+ def test_account_activation_request_should_include_recipients_on_mail_footer
889
+ flunk 'Not Implemented'
890
+ end
891
+
852
892
def test_test_email_later
853
893
user = User . find ( 1 )
854
894
assert Mailer . test_email ( user ) . deliver_later
@@ -1092,6 +1132,16 @@ def test_security_notification_should_include_link
1092
1132
end
1093
1133
end
1094
1134
1135
+ def test_security_notification_should_include_recipients_on_mail_footer
1136
+ # 管理者を追加削除すると送信される
1137
+ flunk 'Not Implemented'
1138
+ end
1139
+
1140
+ def test_settings_updated_should_include_recipients_on_mail_footer
1141
+ # リポジトリを変えると送信される
1142
+ flunk 'Not Implemented'
1143
+ end
1144
+
1095
1145
def test_mailer_should_not_change_locale
1096
1146
# Set current language to italian
1097
1147
set_language_if_valid 'it'
0 commit comments