mirror of
https://github.com/snipe/snipe-it.git
synced 2025-01-09 12:57:41 -08:00
26 lines
549 B
PHP
26 lines
549 B
PHP
<?php
|
|||
|
|||
namespace Tests\Feature\Livewire;
|
|||
|
|||
use App\Livewire\Importer;
|
|||
use App\Models\User;
|
|||
use Livewire\Livewire;
|
|||
use Tests\TestCase;
|
|||
|
|||
class ImporterTest extends TestCase
|
|||
{
|
|||
public function testRendersSuccessfully()
|
|||
{
|
|||
Livewire::actingAs(User::factory()->canImport()->create())
|
|||
->test(Importer::class)
|
|||
->assertStatus(200);
|
|||
}
|
|||
|
|||
public function testRequiresPermission()
|
|||
{
|
|||
Livewire::actingAs(User::factory()->create())
|
|||
->test(Importer::class)
|
|||
->assertStatus(403);
|
|||
}
|
|||
}
|