Remove failing test for unimplemented `wp_mail()` enhancement.

The removed test has been added as a patch to the original ticket, #15448.

Props MikeHansenMe.
See #30284.

git-svn-id: https://develop.svn.wordpress.org/trunk@30516 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Boone Gorges 2014-11-22 20:05:34 +00:00
parent 73ef6bd6fc
commit d5b277e6bd
1 changed files with 0 additions and 34 deletions

View File

@ -71,40 +71,6 @@ class Tests_Mail extends WP_UnitTestCase {
$this->assertTrue(strpos($GLOBALS['phpmailer']->mock_sent[0]['header'], 'charset=') > 0);
}
/**
* @ticket 15448
*/
function test_wp_mail_plain_and_html() {
$to = 'user@example.com';
$subject = 'Test email with plain text and html versions';
$messages = array( 'text/plain' => 'Here is some plain text.',
'text/html' =>'<html><head></head><body>Here is the HTML ;-)<body></html>' );
wp_mail( $to, $subject, $messages );
preg_match( '/boundary="(.*)"/', $GLOBALS['phpmailer']->mock_sent[0]['header'], $matches);
$boundry = $matches[1];
$body = '--' . $boundry . '
Content-Type: text/plain; charset = "UTF-8"
Content-Transfer-Encoding: 8bit
Here is some plain text.
--' . $boundry . '
Content-Type: text/html; charset = "UTF-8"
Content-Transfer-Encoding: 8bit
<html><head></head><body>Here is the HTML ;-)<body></html>
--' . $boundry . '--
';
// We need some better assertions here but these test the behaviour for now.
$this->assertEquals($body, $GLOBALS['phpmailer']->mock_sent[0]['body']);
}
/**
* @ticket 17305
*/