codeception/verify 2.1 removed support for expect()->notEmpty() so we need to replace it with verify()->notEmpty(). [MAILPOET-5664]
14 lines
320 B
PHP
14 lines
320 B
PHP
<?php declare(strict_types = 1);
|
|
|
|
namespace MailPoet\Test\Settings;
|
|
|
|
use MailPoet\Settings\Charsets;
|
|
|
|
class CharsetsTest extends \MailPoetUnitTest {
|
|
public function testItReturnsAListOfCharsets() {
|
|
$charsets = Charsets::getAll();
|
|
verify($charsets)->notEmpty();
|
|
verify($charsets[0])->equals('UTF-8');
|
|
}
|
|
}
|