pixelfed/tests/Feature/LoginTest.php

17 wiersze
249 B
PHP
Czysty Zwykły widok Historia

2018-10-04 16:00:15 +00:00
<?php
namespace Tests\Feature;
use Tests\TestCase;
class LoginTest extends TestCase
{
2022-12-21 21:21:07 +00:00
/** @test */
public function view_login_page()
{
$response = $this->get('login');
2018-10-04 16:00:15 +00:00
2022-12-21 21:21:07 +00:00
$response->assertSee('Forgot Password');
}
}