14 lines
458 B
PHP
14 lines
458 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
use App\Support\SystemSettings;
|
||
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
||
|
|
|
||
|
|
uses(DatabaseTransactions::class);
|
||
|
|
|
||
|
|
it('тарифы доп.услуг по умолчанию: подбор 300 ₽, источники 50 ₽', function () {
|
||
|
|
expect((string) SystemSettings::get('autopodbor_price_search_rub'))->toBe('300')
|
||
|
|
->and((string) SystemSettings::get('autopodbor_price_study_rub'))->toBe('50');
|
||
|
|
});
|