Guest User

Untitled

a guest
May 27th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. <?php
  2.  
  3. // ...
  4.  
  5. class LoginTest extends TestCase
  6. {
  7. public function test_user_can_view_a_login_form()
  8. {
  9. $response = $this->get('/login');
  10.  
  11. $response->assertSuccessful();
  12. $response->assertViewIs('auth.login');
  13. }
  14. }
Add Comment
Please, Sign In to add comment