7 class UrlTest extends TestCase
9 public function test_url_helper_takes_custom_url_into_account()
11 $this->runWithEnv('APP_URL', 'http://example.com/bookstack', function () {
12 $this->assertEquals('http://example.com/bookstack/books', url('/books'));
16 public function test_url_helper_sets_correct_scheme_even_when_request_scheme_is_different()
18 $this->runWithEnv('APP_URL', 'https://example.com/', function () {
19 $this->get('http://example.com/login')->assertSee('https://example.com/dist/styles.css');