8 lines
146 B
PHP
8 lines
146 B
PHP
<?php
|
|
|
|
it('redirects the index page to login', function () {
|
|
$response = $this->get('/');
|
|
|
|
$response->assertRedirect(route('login'));
|
|
});
|