first commit
This commit is contained in:
37
tests/Feature/CompanySettings/IndexTest.php
Normal file
37
tests/Feature/CompanySettings/IndexTest.php
Normal file
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
namespace Tests\Feature\CompanySettings;
|
||||
|
||||
use App\Models\User;
|
||||
use Tests\Facades\UserFactory;
|
||||
use Tests\TestCase;
|
||||
|
||||
class IndexTest extends TestCase
|
||||
{
|
||||
private const URI = 'company-settings';
|
||||
|
||||
private User $admin;
|
||||
private User $user;
|
||||
|
||||
protected function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
|
||||
$this->admin = UserFactory::refresh()->withTokens()->asAdmin()->create();
|
||||
$this->user = UserFactory::refresh()->withTokens()->asUser()->create();
|
||||
}
|
||||
|
||||
public function test_index_as_admin(): void
|
||||
{
|
||||
$response = $this->actingAs($this->admin)->getJson(self::URI);
|
||||
|
||||
$response->assertOk();
|
||||
}
|
||||
|
||||
public function test_index_as_user(): void
|
||||
{
|
||||
$response = $this->actingAs($this->user)->getJson(self::URI);
|
||||
|
||||
$response->assertOk();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user