- Updates subscriber limit check logic - Updates unit tests - Updates Menu's check for subscriber limit
10 lines
229 B
PHP
10 lines
229 B
PHP
<?php
|
|
|
|
use MailPoet\Util\License\License;
|
|
|
|
class LicenseTest extends MailPoetTest {
|
|
function testItGetsLicense() {
|
|
expect(License::getLicense())->false();
|
|
expect(License::getLicense('valid'))->equals('valid');
|
|
}
|
|
} |