9 lines
204 B
PHP
9 lines
204 B
PHP
<?php
|
|
use MailPoet\Util\Url;
|
|
|
|
class UtilUrlTest extends MailPoetTest {
|
|
function testItCanReturnCurrentUrl() {
|
|
$current_url = Url::getCurrentUrl();
|
|
expect($current_url)->startsWith('http');
|
|
}
|
|
} |