From 166523a2350f475edc83096c1d170cb625889e27 Mon Sep 17 00:00:00 2001 From: NoAvatar Date: Thu, 17 Oct 2024 05:45:05 +1000 Subject: [PATCH] Focus on present tests --- tests/Feature/UserTest.php | 63 -------------------------------------- 1 file changed, 63 deletions(-) diff --git a/tests/Feature/UserTest.php b/tests/Feature/UserTest.php index e03e840..e876718 100644 --- a/tests/Feature/UserTest.php +++ b/tests/Feature/UserTest.php @@ -36,67 +36,4 @@ public function test_fail_get_user_not_exists(): void $this->get('/user/sehtrgher') ->assertNotFound(); } - - // FIXME: below tests should be in AuthTest - public function test_user_can_sign_up_with_validate_data(): void - { - // - } - - public function test_user_cannot_sign_up_with_not_validate_data(): void - { - // - } - - public function test_user_can_sign_in_with_validate_data(): void - { - // - } - - public function test_user_cannot_sign_in_with_not_validate_data_or_wrong_credentials(): void - { - // - } - // FIXME: above tests should be in AuthTest - - // FIXME: admin tests in separate file - public function test_admin_can_create_user_with_validate_data(): void - { - // - } - - public function test_admin_cannot_create_user_with_not_validate_data(): void - { - // - } - - public function test_admin_can_update_user_with_validate_data(): void - { - // - } - - public function test_admin_cannot_update_user_with_not_validate_data(): void - { - // - } - - public function test_admin_can_delete_user_that_exists(): void - { - // - } - - public function test_admin_cannot_delete_user_that_not_exists(): void - { - // - } - - public function test_unauthorized_cannot_do_admin_actions(): void - { - // - } - - public function test_user_cannot_do_admin_actions(): void - { - // - } }