Changeset 57283 for trunk/tests/phpunit/tests/admin/includesMisc.php
- Timestamp:
- 01/14/2024 10:59:48 AM (13 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/admin/includesMisc.php
r51994 r57283 28 28 } 29 29 } 30 31 /** 32 * @ticket 59520 33 */ 34 public function test_new_admin_email_subject_filter() { 35 // Default value 36 $mailer = tests_retrieve_phpmailer_instance(); 37 update_option_new_admin_email( 'old@example.com', 'new@example.com' ); 38 $this->assertEquals( '[Test Blog] New Admin Email Address', $mailer->get_sent()->subject ); 39 40 // Filtered value 41 add_filter( 42 'new_admin_email_subject', 43 function () { 44 return 'Filtered Admin Email Address'; 45 }, 46 10, 47 1 48 ); 49 50 $mailer->mock_sent = array(); 51 52 $mailer = tests_retrieve_phpmailer_instance(); 53 update_option_new_admin_email( 'old@example.com', 'new@example.com' ); 54 $this->assertEquals( 'Filtered Admin Email Address', $mailer->get_sent()->subject ); 55 } 30 56 }
Note: See TracChangeset
for help on using the changeset viewer.