Guest User

Untitled

a guest
May 27th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. <?php
  2.  
  3. // ...
  4.  
  5. class LoginTest extends TestCase
  6. {
  7. // ...
  8.  
  9. public function test_user_cannot_view_a_login_form_when_authenticated()
  10. {
  11. $user = factory(User::class)->make();
  12.  
  13. $response = $this->actingAs($user)->get('/login');
  14.  
  15. $response->assertRedirect('/home');
  16. }
  17. }
Add Comment
Please, Sign In to add comment