Unverified Commit 00dc58ff authored by Viral Solani's avatar Viral Solani Committed by GitHub

Merge pull request #118 from viralsolani/analysis-XpVdVk

Apply fixes from StyleCI
parents 18250270 abc70dd8
......@@ -60,42 +60,42 @@ class ManageUsersTest extends TestCase
}
/** @test */
function a_user_requires_a_first_name()
public function a_user_requires_a_first_name()
{
$this->createUser(['first_name' => null])
->assertSessionHasErrors('first_name');
}
/** @test */
function a_user_requires_a_last_name()
public function a_user_requires_a_last_name()
{
$this->createUser(['last_name' => null])
->assertSessionHasErrors('last_name');
}
/** @test */
function a_user_requires_a_email()
public function a_user_requires_a_email()
{
$this->createUser(['email' => null])
->assertSessionHasErrors('email');
}
/** @test */
function a_user_requires_a_password()
public function a_user_requires_a_password()
{
$this->createUser(['password' => null])
->assertSessionHasErrors('password');
}
/** @test */
function a_user_requires_a_role()
public function a_user_requires_a_role()
{
$this->createUser()
->assertSessionHasErrors('assignees_roles');
}
/** @test */
function a_user_requires_a_permission()
public function a_user_requires_a_permission()
{
$this->createUser()
->assertSessionHasErrors('permissions');
......@@ -123,9 +123,10 @@ class ManageUsersTest extends TestCase
}
/**
* Create User
* Create User.
*
* @param $overrides
*
* @return [array] User array
*/
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