Update user fixtures with new entity code
This commit is contained in:
parent
bd8b1f91a4
commit
d4ccd0b7a2
20 changed files with 159 additions and 102 deletions
|
@ -1,11 +1,8 @@
|
|||
$HASH1 = {
|
||||
customer_id
|
||||
=> 1,
|
||||
email => 'test1@example.com',
|
||||
id => 1,
|
||||
join_date
|
||||
=> '2017-08-25 15:36:11',
|
||||
organisation_id
|
||||
=> undef,
|
||||
password => '$2a$08$yCau6xDkRFZINg80iVvMh.M3JnLq2g.LJ7GMJL5KQvO45pDL.D/Rq'
|
||||
email => 'test1@example.com',
|
||||
entity_id => 1,
|
||||
id => 1,
|
||||
is_admin => 0,
|
||||
join_date => '2017-08-31 12:17:25',
|
||||
password => '$2a$08$HSuznDeSU1fuONwKhp2/S.TX/X4p4g0dHtz20kVXxprm8hIg5QQma'
|
||||
};
|
||||
|
|
|
@ -1,11 +1,8 @@
|
|||
$HASH1 = {
|
||||
customer_id
|
||||
=> 2,
|
||||
email => 'test2@example.com',
|
||||
id => 2,
|
||||
join_date
|
||||
=> '2017-08-25 15:36:11',
|
||||
organisation_id
|
||||
=> undef,
|
||||
password => '$2a$08$BZAsbHSW8TN/jlL2DFGDoeKFRKzj2dQTBwatxb0p/maefEcWcziom'
|
||||
email => 'test2@example.com',
|
||||
entity_id => 2,
|
||||
id => 2,
|
||||
is_admin => 0,
|
||||
join_date => '2017-08-31 12:17:25',
|
||||
password => '$2a$08$5XYLWPJvVGuWUvfSWj9cIOg4/tyB4fZ3knzwgw5UnBSKFBFIKOiFC'
|
||||
};
|
||||
|
|
|
@ -1,11 +1,8 @@
|
|||
$HASH1 = {
|
||||
customer_id
|
||||
=> 3,
|
||||
email => 'test3@example.com',
|
||||
id => 3,
|
||||
join_date
|
||||
=> '2017-08-25 15:36:11',
|
||||
organisation_id
|
||||
=> undef,
|
||||
password => '$2a$08$xdkD/OA5izrOX9cvJDa4i..8T3YGmfVSo/G87wDRoGWnQmlC0gxOW'
|
||||
email => 'test3@example.com',
|
||||
entity_id => 3,
|
||||
id => 3,
|
||||
is_admin => 0,
|
||||
join_date => '2017-08-31 12:17:25',
|
||||
password => '$2a$08$p5VU4leHetEvuz2P3uMfYuuPTkDGg8wsM7QuSVKkXR.s3B9T2JaVW'
|
||||
};
|
||||
|
|
|
@ -1,11 +1,8 @@
|
|||
$HASH1 = {
|
||||
customer_id
|
||||
=> 4,
|
||||
email => 'test4@example.com',
|
||||
id => 4,
|
||||
join_date
|
||||
=> '2017-08-25 15:36:11',
|
||||
organisation_id
|
||||
=> undef,
|
||||
password => '$2a$08$svjdm.Syn3f062pDIN3/ROTUU7W16n0zJFm9/sm3x7pfbMLZFV.5G'
|
||||
email => 'test4@example.com',
|
||||
entity_id => 4,
|
||||
id => 4,
|
||||
is_admin => 0,
|
||||
join_date => '2017-08-31 12:17:25',
|
||||
password => '$2a$08$fkkTUYA9zvt32iBbN7aOcOnmiHzOkbMEjN31PB9CsitGrE.KF7cAG'
|
||||
};
|
||||
|
|
|
@ -1,11 +1,8 @@
|
|||
$HASH1 = {
|
||||
customer_id
|
||||
=> undef,
|
||||
email => 'org@example.com',
|
||||
id => 5,
|
||||
join_date
|
||||
=> '2017-08-25 15:36:11',
|
||||
organisation_id
|
||||
=> 1,
|
||||
password => '$2a$08$3PkZF7D9FiOq8hgU7cJ6puY86Fkl34bQj6dZeJRXPU8hhJIMZtge2'
|
||||
email => 'org@example.com',
|
||||
entity_id => 5,
|
||||
id => 5,
|
||||
is_admin => 0,
|
||||
join_date => '2017-08-31 12:17:25',
|
||||
password => '$2a$08$MWC45.w1AnLPNNHiS96ICOHfNlTrIqB0.7OPzy5qB.z0pZB0theo.'
|
||||
};
|
||||
|
|
8
t/etc/fixtures/data/users/users/6.fix
Normal file
8
t/etc/fixtures/data/users/users/6.fix
Normal file
|
@ -0,0 +1,8 @@
|
|||
$HASH1 = {
|
||||
email => 'admin@example.com',
|
||||
entity_id => 6,
|
||||
id => 6,
|
||||
is_admin => 1,
|
||||
join_date => '2017-08-31 12:17:25',
|
||||
password => '$2a$08$1sPcPB9GnoNgzhBAk2bHSOqEmv6.Y6YLrAa2DJ6TR2WefzTYZQ92G'
|
||||
};
|
Reference in a new issue