Lines 67-72
SKIP: {
Link Here
|
67 |
$patron->flags(1)->store; # superlibrarian permission |
67 |
$patron->flags(1)->store; # superlibrarian permission |
68 |
$s->auth( $patron->userid, $password ); |
68 |
$s->auth( $patron->userid, $password ); |
69 |
like( $driver->get_title, qr(Koha staff client), 'Patron with flags superlibrarian should be able to login' ); |
69 |
like( $driver->get_title, qr(Koha staff client), 'Patron with flags superlibrarian should be able to login' ); |
|
|
70 |
|
71 |
push @data_to_cleanup, $patron, $patron->category, $patron->library; |
70 |
}; |
72 |
}; |
71 |
|
73 |
|
72 |
subtest 'OPAC interface authentication' => sub { |
74 |
subtest 'OPAC interface authentication' => sub { |
73 |
- |
|
|