feature: send thankscard page
This commit is contained in:
@@ -16,7 +16,7 @@ class UserDashboardLayoutTest extends TestCase
|
||||
'name' => 'System Admin',
|
||||
'mail' => 'admin@runsystem.net',
|
||||
'pass' => md5('password'),
|
||||
'departments' => 1,
|
||||
'departments' => config('constants.DEPARTMENTS')[0],
|
||||
'role' => config('constants.ROLE_ADMIN'),
|
||||
'status' => config('constants.STATUS_ACTIVE'),
|
||||
'card' => 10,
|
||||
@@ -45,7 +45,7 @@ class UserDashboardLayoutTest extends TestCase
|
||||
'name' => 'User A',
|
||||
'mail' => 'usera@runsystem.net',
|
||||
'pass' => md5('password'),
|
||||
'departments' => 1,
|
||||
'departments' => config('constants.DEPARTMENTS')[0],
|
||||
'role' => config('constants.ROLE_MEMBER'),
|
||||
'status' => config('constants.STATUS_ACTIVE'),
|
||||
'card' => 10,
|
||||
@@ -58,7 +58,7 @@ class UserDashboardLayoutTest extends TestCase
|
||||
'name' => 'User B',
|
||||
'mail' => 'userb@runsystem.net',
|
||||
'pass' => md5('password'),
|
||||
'departments' => 2,
|
||||
'departments' => config('constants.DEPARTMENTS')[1],
|
||||
'role' => config('constants.ROLE_MEMBER'),
|
||||
'status' => config('constants.STATUS_ACTIVE'),
|
||||
'card' => 10,
|
||||
@@ -100,7 +100,7 @@ class UserDashboardLayoutTest extends TestCase
|
||||
'name' => 'User A',
|
||||
'mail' => 'usera@runsystem.net',
|
||||
'pass' => md5('password'),
|
||||
'departments' => 1,
|
||||
'departments' => config('constants.DEPARTMENTS')[0],
|
||||
'role' => config('constants.ROLE_MEMBER'),
|
||||
'status' => config('constants.STATUS_ACTIVE'),
|
||||
'card' => 10,
|
||||
@@ -125,7 +125,7 @@ class UserDashboardLayoutTest extends TestCase
|
||||
'name' => "User {$char}",
|
||||
'mail' => "user{$char}@runsystem.net",
|
||||
'pass' => md5('password'),
|
||||
'departments' => 1,
|
||||
'departments' => config('constants.DEPARTMENTS')[0],
|
||||
'role' => config('constants.ROLE_MEMBER'),
|
||||
'status' => config('constants.STATUS_ACTIVE'),
|
||||
'card' => 10,
|
||||
@@ -162,7 +162,7 @@ class UserDashboardLayoutTest extends TestCase
|
||||
'name' => 'Active User',
|
||||
'mail' => 'active@runsystem.net',
|
||||
'pass' => md5('password'),
|
||||
'departments' => 1,
|
||||
'departments' => config('constants.DEPARTMENTS')[0],
|
||||
'role' => config('constants.ROLE_MEMBER'),
|
||||
'status' => config('constants.STATUS_ACTIVE'),
|
||||
'card' => 10,
|
||||
@@ -175,7 +175,7 @@ class UserDashboardLayoutTest extends TestCase
|
||||
'name' => 'Inactive User',
|
||||
'mail' => 'inactive@runsystem.net',
|
||||
'pass' => md5('password'),
|
||||
'departments' => 1,
|
||||
'departments' => config('constants.DEPARTMENTS')[0],
|
||||
'role' => config('constants.ROLE_MEMBER'),
|
||||
'status' => config('constants.STATUS_INACTIVE'),
|
||||
'card' => 10,
|
||||
@@ -217,7 +217,7 @@ class UserDashboardLayoutTest extends TestCase
|
||||
'name' => 'User A',
|
||||
'mail' => 'usera@runsystem.net',
|
||||
'pass' => md5('password'),
|
||||
'departments' => 1,
|
||||
'departments' => config('constants.DEPARTMENTS')[0],
|
||||
'role' => config('constants.ROLE_MEMBER'),
|
||||
'status' => config('constants.STATUS_ACTIVE'),
|
||||
'card' => 10,
|
||||
|
||||
Reference in New Issue
Block a user