16 lines
318 B
PHP
16 lines
318 B
PHP
<?php
|
|
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
use Tests\TestCase;
|
|
|
|
class AvatarUploadTest extends TestCase
|
|
{
|
|
use RefreshDatabase;
|
|
|
|
public function test_upload_requires_authentication()
|
|
{
|
|
$response = $this->postJson(route('avatar.upload'));
|
|
$response->assertStatus(401);
|
|
}
|
|
}
|