mirror of
https://github.com/linuxserver/Heimdall.git
synced 2025-11-27 02:29:57 +09:00
19 lines
378 B
PHP
19 lines
378 B
PHP
<?php
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
use Tests\TestCase;
|
|
|
|
class ImportTest extends TestCase
|
|
{
|
|
use RefreshDatabase;
|
|
|
|
public function test_import_page_loads_successfully(): void
|
|
{
|
|
$response = $this->get(route('items.import'));
|
|
|
|
$response->assertStatus(200);
|
|
$response->assertSee('Import');
|
|
}
|
|
} |