mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-14 01:24:06 -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);
|
|
}
|
|
}
|