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