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