Commit abc70dd8 authored by Viral Solani's avatar Viral Solani Committed by StyleCI Bot

Apply fixes from StyleCI

parent 18250270
...@@ -60,42 +60,42 @@ class ManageUsersTest extends TestCase ...@@ -60,42 +60,42 @@ 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');
} }
/** @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');
...@@ -123,9 +123,10 @@ class ManageUsersTest extends TestCase ...@@ -123,9 +123,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