You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pixelfed/tests/Feature/LoginTest.php

19 lines
342 B
PHTML

7 years ago
<?php
namespace Tests\Feature;
use Tests\TestCase;
7 years ago
use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Foundation\Testing\WithoutMiddleware;
use App\User;
7 years ago
class LoginTest extends TestCase
{
5 years ago
/** @test */
public function view_login_page()
{
$response = $this->get('login');
7 years ago
5 years ago
$response->assertSee('Forgot Password');
}
7 years ago
}