17 lines
321 B
PHP
17 lines
321 B
PHP
<?php
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use Tests\TestCase;
|
|
|
|
class GuestLiveShowRouteTest extends TestCase
|
|
{
|
|
public function test_live_show_route_serves_guest_shell(): void
|
|
{
|
|
$response = $this->get('/show/demo-live-show');
|
|
|
|
$response->assertStatus(200);
|
|
$response->assertViewIs('guest');
|
|
}
|
|
}
|