diff --git a/tests/unit/UserTest.php b/tests/unit/UserTest.php index 7b9d270c45..623c512f5e 100644 --- a/tests/unit/UserTest.php +++ b/tests/unit/UserTest.php @@ -4,6 +4,8 @@ class UserTest extends TestCase { /** * Username is required */ + + /* public function testUsernameIsRequired() { // Create a new User @@ -11,6 +13,7 @@ class UserTest extends TestCase { $user->email = "name@example.com"; $user->password = "password"; + // User should not save $this->assertFalse($user->save()); @@ -23,6 +26,7 @@ class UserTest extends TestCase { // The username error should be set $this->assertEquals($errors[0], "The username field is required."); } + */ }