11 lines
221 B
PHP
11 lines
221 B
PHP
<?php
|
|
use \MailPoet\Settings\Charsets;
|
|
|
|
class CharsetsCest {
|
|
function itReturnsAListOfCharsets() {
|
|
$charsets = Charsets::getAll();
|
|
expect($charsets)->notEmpty();
|
|
expect($charsets[0])->equals('UTF-8');
|
|
}
|
|
}
|