@@ -, +, @@ Test::DBIx::Class --- t/Auth_with_shibboleth.t | 29 ++++++++++++++++++++++++++--- 1 file changed, 26 insertions(+), 3 deletions(-) --- a/t/Auth_with_shibboleth.t +++ a/t/Auth_with_shibboleth.t @@ -1,17 +1,40 @@ #!/usr/bin/perl + +# This file is part of Koha. +# +# Koha is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. # -# Add more tests here!!! +# Koha is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Koha; if not, see . use Modern::Perl; -use Test::More tests => 6; +use Module::Load::Conditional qw/check_install/; +use Test::More; use Test::MockModule; use Test::Warn; -use Test::DBIx::Class {schema_class => 'Koha::Schema', connect_info => ['dbi:SQLite:dbname=:memory:','','']}; use CGI; use C4::Context; +BEGIN { + if ( check_install( module => 'Test::DBIx::Class' ) ) { + plan tests => 6; + } else { + plan skip_all => "Need Test::DBIx::Class" + } +} + +use Test::DBIx::Class { schema_class => 'Koha::Schema', connect_info => ['dbi:SQLite:dbname=:memory:','',''] }; + # Mock Variables my $matchpoint = 'userid'; my %mapping = ( 'userid' => { 'is' => 'uid' }, ); --