Skip to content

Instantly share code, notes, and snippets.

@DCzajkowski
Created May 22, 2018 20:41
Show Gist options
  • Select an option

  • Save DCzajkowski/11413d21de2d9b84f8a762f8d799c352 to your computer and use it in GitHub Desktop.

Select an option

Save DCzajkowski/11413d21de2d9b84f8a762f8d799c352 to your computer and use it in GitHub Desktop.
<?php
// ...
class LoginTest extends TestCase
{
// ...
public function test_user_cannot_view_a_login_form_when_authenticated()
{
$user = factory(User::class)->make();
$response = $this->actingAs($user)->get('/login');
$response->assertRedirect('/home');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment