Commit 8db1fd5f authored by Viral Solani's avatar Viral Solani

Merge branch 'develop' of https://github.com/viralsolani/laravel-adminpanel into develop

parents 344655cd 00dc58ff
...@@ -64,28 +64,28 @@ class ManageUsersTest extends TestCase ...@@ -64,28 +64,28 @@ class ManageUsersTest extends TestCase
} }
/** @test */ /** @test */
function a_user_requires_a_first_name() public function a_user_requires_a_first_name()
{ {
$this->createUser(['first_name' => null]) $this->createUser(['first_name' => null])
->assertSessionHasErrors('first_name'); ->assertSessionHasErrors('first_name');
} }
/** @test */ /** @test */
function a_user_requires_a_last_name() public function a_user_requires_a_last_name()
{ {
$this->createUser(['last_name' => null]) $this->createUser(['last_name' => null])
->assertSessionHasErrors('last_name'); ->assertSessionHasErrors('last_name');
} }
/** @test */ /** @test */
function a_user_requires_a_email() public function a_user_requires_a_email()
{ {
$this->createUser(['email' => null]) $this->createUser(['email' => null])
->assertSessionHasErrors('email'); ->assertSessionHasErrors('email');
} }
/** @test */ /** @test */
function a_user_requires_a_password() public function a_user_requires_a_password()
{ {
$this->createUser(['password' => null]) $this->createUser(['password' => null])
->assertSessionHasErrors('password'); ->assertSessionHasErrors('password');
...@@ -107,14 +107,15 @@ class ManageUsersTest extends TestCase ...@@ -107,14 +107,15 @@ class ManageUsersTest extends TestCase
} }
/** @test */ /** @test */
function a_user_requires_a_role()
public function a_user_requires_a_role()
{ {
$this->createUser() $this->createUser()
->assertSessionHasErrors('assignees_roles'); ->assertSessionHasErrors('assignees_roles');
} }
/** @test */ /** @test */
function a_user_requires_a_permission() public function a_user_requires_a_permission()
{ {
$this->createUser() $this->createUser()
->assertSessionHasErrors('permissions'); ->assertSessionHasErrors('permissions');
...@@ -199,9 +200,10 @@ class ManageUsersTest extends TestCase ...@@ -199,9 +200,10 @@ class ManageUsersTest extends TestCase
} }
/** /**
* Create User * Create User.
* *
* @param $overrides * @param $overrides
*
* @return [array] User array * @return [array] User array
*/ */
protected function createUser($overrides = []) protected function createUser($overrides = [])
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment