forked from mirror/pixelfed
20 lines
367 B
PHP
20 lines
367 B
PHP
<?php
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use Tests\TestCase;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
use Illuminate\Foundation\Testing\WithoutMiddleware;
|
|
use App\User;
|
|
|
|
class LoginTest extends TestCase
|
|
{
|
|
|
|
/** @test */
|
|
public function view_login_page()
|
|
{
|
|
$response = $this->get('login');
|
|
|
|
$response->assertSee('Forgot Password');
|
|
}
|
|
} |