|
Lines 82-87
sub test_request_patron_status_v2 {
Link Here
|
| 82 |
my $patron1 = $builder->build({ |
82 |
my $patron1 = $builder->build({ |
| 83 |
source => 'Borrower', |
83 |
source => 'Borrower', |
| 84 |
value => { |
84 |
value => { |
|
|
85 |
login_attempts => 0, |
| 85 |
password => hash_password( PATRON_PW ), |
86 |
password => hash_password( PATRON_PW ), |
| 86 |
}, |
87 |
}, |
| 87 |
}); |
88 |
}); |
|
Lines 153-158
sub test_request_patron_info_v2 {
Link Here
|
| 153 |
my $patron2 = $builder->build({ |
154 |
my $patron2 = $builder->build({ |
| 154 |
source => 'Borrower', |
155 |
source => 'Borrower', |
| 155 |
value => { |
156 |
value => { |
|
|
157 |
login_attempts => 0, |
| 156 |
password => hash_password( PATRON_PW ), |
158 |
password => hash_password( PATRON_PW ), |
| 157 |
}, |
159 |
}, |
| 158 |
}); |
160 |
}); |
| 159 |
- |
|
|