13 lines
357 B
PHP
13 lines
357 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
use Tests\TestCase;
|
||
|
|
|
||
|
|
uses(TestCase::class); // нужен booted-app: config()
|
||
|
|
|
||
|
|
it('defaults yandex_direct base_url to the sandbox host', function () {
|
||
|
|
expect(config('services.yandex_direct.base_url'))->toContain('api-sandbox.direct.yandex.com')
|
||
|
|
->and(config('services.yandex_direct.enabled'))->toBeFalse();
|
||
|
|
});
|