20 lines
380 B
PHP
20 lines
380 B
PHP
<?php
|
|
|
|
namespace Tests\Api\Authentication;
|
|
|
|
use Tests\ApiTestCase;
|
|
|
|
class ApiAuthenticateTest extends ApiTestCase
|
|
{
|
|
/** @test */
|
|
public function guest_is_rejected()
|
|
{
|
|
$response = $this->json('GET', '/api/contacts');
|
|
|
|
$response->assertStatus(401);
|
|
$response->assertJsonFragment([
|
|
'message' => 'Unauthenticated.',
|
|
]);
|
|
}
|
|
}
|