Aleksander Machniak
2014-02-23 2b8f033bcbd5581ff7b27b396f308b77058c09dc
tests/Framework/Mime.php
@@ -41,6 +41,9 @@
            21 => '"test test"@domain.tld',
            // invalid (#1489092)
            22 => '"John Doe @ SomeBusinessName" <MAILER-DAEMON>',
            23 => '=?UTF-8?B?IlRlc3QsVGVzdCI=?= <test@domain.tld>',
            // invalid, but we do our best to parse correctly
            24 => '"email@test.com" <>',
        );
        $results = array(
@@ -68,6 +71,8 @@
            21 => array(1, '', '"test test"@domain.tld'),
            // invalid (#1489092)
            22 => array(1, 'John Doe @ SomeBusinessName', 'MAILER-DAEMON'),
            23 => array(1, 'Test,Test', 'test@domain.tld'),
            24 => array(1, '', 'email@test.com'),
        );
        foreach ($headers as $idx => $header) {