mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-07-31 15:24:31 +03:00
Updated to laravel 6
This commit is contained in:
@ -16,18 +16,16 @@ class UrlTest extends TestCase
|
||||
|
||||
public function test_url_helper_takes_custom_url_into_account()
|
||||
{
|
||||
putenv('APP_URL=http://example.com/bookstack');
|
||||
$this->refreshApplication();
|
||||
$this->assertEquals('http://example.com/bookstack/books', url('/books'));
|
||||
putenv('APP_URL=');
|
||||
$this->runWithEnv('APP_URL', 'http://example.com/bookstack', function() {
|
||||
$this->assertEquals('http://example.com/bookstack/books', url('/books'));
|
||||
});
|
||||
}
|
||||
|
||||
public function test_url_helper_sets_correct_scheme_even_when_request_scheme_is_different()
|
||||
{
|
||||
putenv('APP_URL=https://example.com/');
|
||||
$this->refreshApplication();
|
||||
$this->get('http://example.com/login')->assertSee('https://example.com/dist/styles.css');
|
||||
putenv('APP_URL=');
|
||||
$this->runWithEnv('APP_URL', 'https://example.com/', function() {
|
||||
$this->get('http://example.com/login')->assertSee('https://example.com/dist/styles.css');
|
||||
});
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user