mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-21 13:34:00 +00:00
22 lines
450 B
PHP
22 lines
450 B
PHP
<?php
|
|
|
|
namespace Tests\Unit;
|
|
|
|
use Tests\TestCase;
|
|
|
|
class RegistrationTest extends TestCase
|
|
{
|
|
/**
|
|
* A basic feature test example.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function guestsCanAccessRegisterPage()
|
|
{
|
|
$response = $this->get('');
|
|
$response->assertStatus(200);
|
|
$response->assertSee('Sign In');
|
|
$response->assertSee('To keep using the service please sign in with your personal info');
|
|
}
|
|
}
|