pixelfed/tests/Feature/LoginTest.php

20 lines
367 B
PHP
Raw Normal View History

2018-10-04 16:00:15 +00:00
<?php
namespace Tests\Feature;
use Tests\TestCase;
2019-01-31 01:39:51 +00:00
use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Foundation\Testing\WithoutMiddleware;
use App\User;
2018-10-04 16:00:15 +00:00
class LoginTest extends TestCase
{
/** @test */
public function view_login_page()
{
$response = $this->get('login');
2019-06-30 04:41:52 +00:00
$response->assertSee('Forgot Password');
2018-10-04 16:00:15 +00:00
}
}