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 - { - // - } }