Changeset 894 in tests for trunk/tests/test_includes_pluggable.php
- Timestamp:
- 07/09/2012 03:32:24 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/test_includes_pluggable.php
r828 r894 47 47 * @group pluggable 48 48 * @group mail 49 * @ticket UT47 49 50 */ 50 51 class TestMailFunctions extends WP_UnitTestCase { 51 52 function setUp() { 52 53 parent::setUp(); 53 $this->knownUTBug( 47 );54 54 } 55 55 … … 113 113 } 114 114 115 /** 116 * @ticket 15448 117 */ 115 118 function test_wp_mail_plain_and_html() { 116 $this->knownWPBug(15448);117 119 118 120 $to = 'user@example.com'; … … 149 151 } 150 152 153 /** 154 * @ticket 17305 155 */ 151 156 function test_wp_mail_rfc2822_addresses() { 152 $this->knownWPBug(17305);153 157 154 158 $to = "Name <address@tld.com>"; … … 185 189 } 186 190 191 /** 192 * @ticket 17305 193 */ 187 194 function test_wp_mail_multiple_rfc2822_to_addresses() { 188 $this->knownWPBug(17305);189 195 190 196 $to = "Name <address@tld.com>, Another Name <another_address@different-tld.com>"; … … 227 233 } 228 234 235 /** 236 * @ticket 18463 237 */ 229 238 function test_wp_mail_to_address_no_name() { 230 $this->knownWPBug( 18463 );231 239 232 240 $to = "<address@tld.com>"; … … 268 276 */ 269 277 class TestUserFunction extends WP_UnitTestCase { 270 // #13317 278 /** 279 * @ticket 13317 280 */ 271 281 function test_get_userdata() { 272 282 $id = $this->factory->user->create( array( 'role' => 'administrator' ) );
Note: See TracChangeset
for help on using the changeset viewer.