mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 16:24:51 +00:00
33 lines
728 B
PHP
33 lines
728 B
PHP
<?php
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use Tests\TestCase;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
use Illuminate\Foundation\Testing\WithoutMiddleware;
|
|
|
|
class LoginTest extends TestCase
|
|
{
|
|
|
|
/** @test */
|
|
public function view_login_page()
|
|
{
|
|
$response = $this->get('login');
|
|
|
|
$response->assertSee('Forgot Password');
|
|
}
|
|
|
|
/** @test */
|
|
public function view_register_page()
|
|
{
|
|
if(true == config('pixelfed.open_registration')) {
|
|
$response = $this->get('register');
|
|
|
|
$response->assertSee('Register a new account');
|
|
} else {
|
|
$response = $this->get('register');
|
|
|
|
$response->assertSee('Registration is closed');
|
|
}
|
|
}
|
|
} |