16 lines
582 B
PHP
16 lines
582 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
// NOTE: \Tests\TestCase auto-binds via tests/Pest.php (->in('Feature')); explicit
|
|
// uses(\Tests\TestCase::class) conflicts ("already uses the test case").
|
|
// DatabaseTransactions — изоляция; also ensures DB connection is bootstrapped.
|
|
uses(DatabaseTransactions::class);
|
|
|
|
it('projects table does NOT have archived_at column (feature removed in v8.27)', function () {
|
|
expect(Schema::hasColumn('projects', 'archived_at'))->toBeFalse();
|
|
});
|