23 lines
594 B
PHP
23 lines
594 B
PHP
<?php
|
|
|
|
namespace BlaxSoftware\LaravelWebSockets\Test\Dashboard;
|
|
|
|
use BlaxSoftware\LaravelWebSockets\Test\Models\User;
|
|
use BlaxSoftware\LaravelWebSockets\Test\TestCase;
|
|
|
|
class DashboardTest extends TestCase
|
|
{
|
|
public function test_cant_see_dashboard_without_authorization()
|
|
{
|
|
$this->get(route('laravel-websockets.dashboard'))
|
|
->assertResponseStatus(403);
|
|
}
|
|
|
|
public function test_can_see_dashboard()
|
|
{
|
|
$this->actingAs(factory(User::class)->create())
|
|
->get(route('laravel-websockets.dashboard'))
|
|
->assertResponseOk();
|
|
}
|
|
}
|