Files
portal/app/tests/Unit/Advertising/YandexDirectConfigTest.php
T

13 lines
357 B
PHP
Raw Normal View History

<?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();
});