X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=tests%2FFeature%2FAuth%2FRegistrationTest.php;fp=tests%2FFeature%2FAuth%2FRegistrationTest.php;h=0000000000000000000000000000000000000000;hb=bb02db955fe6dbc905414d479bbe2d38d41fef63;hp=317a8270aaae5b305bcffbbfe633cbcd41df57df;hpb=9aeade5903cf6d08509fe5b1264a6bc4e0eeb60a;p=alttp.git diff --git a/tests/Feature/Auth/RegistrationTest.php b/tests/Feature/Auth/RegistrationTest.php deleted file mode 100644 index 317a827..0000000 --- a/tests/Feature/Auth/RegistrationTest.php +++ /dev/null @@ -1,32 +0,0 @@ -get('/register'); - - $response->assertStatus(200); - } - - public function test_new_users_can_register() - { - $response = $this->post('/register', [ - 'name' => 'Test User', - 'email' => 'test@example.com', - 'password' => 'password', - 'password_confirmation' => 'password', - ]); - - $this->assertAuthenticated(); - $response->assertRedirect(RouteServiceProvider::HOME); - } -}