2013-10-24 09:53:24 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
class UserMailerTest extends MediaWikiLangTestCase {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers UserMailer::quotedPrintable
|
|
|
|
|
*/
|
|
|
|
|
public function testQuotedPrintable() {
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
"=?UTF-8?Q?=C4=88u=20legebla=3F?=",
|
|
|
|
|
UserMailer::quotedPrintable( "\xc4\x88u legebla?", "UTF-8" ) );
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-19 18:03:54 +00:00
|
|
|
}
|