|
|
|
@ -3,6 +3,8 @@
|
|
|
|
|
namespace Tests\Feature;
|
|
|
|
|
|
|
|
|
|
use Tests\TestCase;
|
|
|
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
|
|
|
use Illuminate\Foundation\Testing\WithoutMiddleware;
|
|
|
|
|
|
|
|
|
|
class LoginTest extends TestCase
|
|
|
|
|
{
|
|
|
|
@ -12,23 +14,20 @@ class LoginTest extends TestCase
|
|
|
|
|
{
|
|
|
|
|
$response = $this->get('login');
|
|
|
|
|
|
|
|
|
|
$response->assertSuccessful()
|
|
|
|
|
->assertSee('Forgot Your Password?');
|
|
|
|
|
$response->assertSee('Forgot Your Password?');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** @test */
|
|
|
|
|
public function view_register_page()
|
|
|
|
|
{
|
|
|
|
|
if(true === config('pixelfed.open_registration')) {
|
|
|
|
|
if(true == config('pixelfed.open_registration')) {
|
|
|
|
|
$response = $this->get('register');
|
|
|
|
|
|
|
|
|
|
$response->assertSuccessful()
|
|
|
|
|
->assertSee('Register a new account');
|
|
|
|
|
$response->assertSee('Register a new account');
|
|
|
|
|
} else {
|
|
|
|
|
$response = $this->get('register');
|
|
|
|
|
|
|
|
|
|
$response->assertSuccessful()
|
|
|
|
|
->assertSee('Registration is closed');
|
|
|
|
|
$response->assertSee('Registration is closed');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|