prodV1 #2

Open
RomanGolienko wants to merge 309 commits from prodV1 into main
1 changed files with 0 additions and 23 deletions
Showing only changes of commit c35a3cefcb - Show all commits

View File

@ -130,27 +130,4 @@ class DirectionTest extends TestCase
$this->assertDatabaseMissing('directions', $this->direction->toArray());
}
public function testNotDestroyDirectionWithEntranceExamination(): void
{
$response = $this->actingAs($this->user)
->withSession(['banned' => false])
->delete(route('directions.destroy', $this->direction));
$response->assertStatus(302);
$this->assertDatabaseHas(
'directions',
$this->direction->only([
'position',
'name',
'description',
'code',
'slug',
'education_level_id',
'education_form_id',
'department_id',
])
);
}
}