|
Lines 15-28
Link Here
|
| 15 |
# GNU General Public License for more details. |
15 |
# GNU General Public License for more details. |
| 16 |
# |
16 |
# |
| 17 |
# You should have received a copy of the GNU General Public License |
17 |
# You should have received a copy of the GNU General Public License |
| 18 |
# along with Koha; if not, see <http://www.gnu.org/licenses>. |
18 |
# along with Koha; if not, see <https://www.gnu.org/licenses>. |
| 19 |
|
19 |
|
| 20 |
use Modern::Perl; |
20 |
use Modern::Perl; |
| 21 |
|
21 |
|
| 22 |
use utf8; |
22 |
use utf8; |
| 23 |
|
23 |
|
| 24 |
use Test::More tests => 1; |
24 |
use Test::More tests => 2; |
| 25 |
use Test::Exception; |
25 |
use Test::Exception; |
|
|
26 |
use Test::NoWarnings; |
| 26 |
|
27 |
|
| 27 |
use Koha::Auth::Identity::Providers; |
28 |
use Koha::Auth::Identity::Providers; |
| 28 |
|
29 |
|
| 29 |
- |
|
|