Comment out initial test for now
This commit is contained in:
@@ -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.");
|
||||
}
|
||||
*/
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user