mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-19 18:01:37 +00:00
26 lines
518 B
PHP
26 lines
518 B
PHP
<?php
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use App\Models\ServerLog;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
use Tests\TestCase;
|
|
|
|
class LogsTest extends TestCase
|
|
{
|
|
use RefreshDatabase;
|
|
|
|
public function test_see_logs()
|
|
{
|
|
$this->actingAs($this->user);
|
|
|
|
/** @var ServerLog $log */
|
|
$log = ServerLog::factory()->create([
|
|
'server_id' => $this->server->id,
|
|
]);
|
|
|
|
$this->get(route('servers.logs', $this->server))
|
|
->assertSeeText($log->type);
|
|
}
|
|
}
|