From 2d8362773069cda4d82e94827141a83c1843db4a Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Thu, 16 Oct 2014 12:25:44 -0300 Subject: [PATCH] Bug 8446: (qa followup) Tests should be conditional on Test::DBIx::Class Signed-off-by: Tomas Cohen Arazi --- t/Auth_with_shibboleth.t | 29 ++++++++++++++++++++++++++--- 1 file changed, 26 insertions(+), 3 deletions(-) diff --git a/t/Auth_with_shibboleth.t b/t/Auth_with_shibboleth.t index 0a39b9b..82c95b9 100644 --- a/t/Auth_with_shibboleth.t +++ b/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' }, ); -- 1.9.1