mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-07-28 17:02:04 +03:00
Mail: Removed custom symfony/mailer fork
Moved to standard symfony mailer now that my patches have been upstreamed. This changes the config to work with the symfony option, following the same overall logic. Also updated testing to allow test runs via mulitple custom env options. Closes #5636
This commit is contained in:
@ -8,14 +8,14 @@ class UrlTest extends TestCase
|
||||
{
|
||||
public function test_url_helper_takes_custom_url_into_account()
|
||||
{
|
||||
$this->runWithEnv('APP_URL', 'http://example.com/bookstack', function () {
|
||||
$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()
|
||||
{
|
||||
$this->runWithEnv('APP_URL', 'https://example.com/', function () {
|
||||
$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