Lines 439-446
subtest 'test_import_with_password_overwrite' => sub {
Link Here
|
439 |
my $branchcode = $builder->build({ source => "Branch"})->{branchcode}; |
439 |
my $branchcode = $builder->build({ source => "Branch"})->{branchcode}; |
440 |
my $categorycode = $builder->build({ source => "Category"})->{categorycode}; |
440 |
my $categorycode = $builder->build({ source => "Category"})->{categorycode}; |
441 |
my $csv_headers = 'surname,userid,branchcode,categorycode,password'; |
441 |
my $csv_headers = 'surname,userid,branchcode,categorycode,password'; |
442 |
my $csv_password = "Worrell,ErnestP,$branchcode,$categorycode,Ernest"; |
442 |
my $csv_password = "Worrell,ErnestP,$branchcode,$categorycode,Ernest1"; |
443 |
my $csv_password_change = "Worrell,ErnestP,$branchcode,$categorycode,Vern"; |
443 |
my $csv_password_change = "Worrell,ErnestP,$branchcode,$categorycode,Vern1"; |
444 |
my $defaults = { cardnumber => "" }; #currently all the defaults come as "" if not filled |
444 |
my $defaults = { cardnumber => "" }; #currently all the defaults come as "" if not filled |
445 |
|
445 |
|
446 |
#Make the test files for importing |
446 |
#Make the test files for importing |
447 |
- |
|
|