mirror of https://github.com/pixelfed/pixelfed.git
19 lines
342 B
PHP
19 lines
342 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');
|
|
}
|
|
} |