@@ -, +, @@ --- t/Biblio.t | 23 ----------------------- t/Calendar.t | 10 ---------- 2 files changed, 33 deletions(-) --- a/t/Biblio.t +++ a/t/Biblio.t @@ -21,31 +21,8 @@ use Test::More; use Test::MockModule; use Test::Warn; -use Module::Load::Conditional qw/check_install/; - -BEGIN { - if ( check_install( module => 'Test::DBIx::Class' ) ) { - plan tests => 47; - } else { - plan skip_all => "Need Test::DBIx::Class" - } -} - use_ok('C4::Biblio'); -#use Test::DBIx::Class {}, 'Biblio'; -use Test::DBIx::Class; #No difference between these two invocations in time taken to execute tests. - -sub fixtures { - my ( $data ) = @_; - fixtures_ok [ - Biblio => [ - [ qw/ biblionumber datecreated timestamp / ], - @$data, - ], - ], 'add fixtures'; -} - my $db = Test::MockModule->new('Koha::Database'); $db->mock( _new_schema => sub { return Schema(); } ); --- a/t/Calendar.t +++ a/t/Calendar.t @@ -39,16 +39,6 @@ use_ok('Koha::Calendar'); use Test::DBIx::Class; -sub fixtures { - my ( $data ) = @_; - fixtures_ok [ - Biblio => [ - [ qw/ biblionumber datecreated timestamp / ], - @$data, - ], - ], 'add fixtures'; -} - my $db = Test::MockModule->new('Koha::Database'); $db->mock( _new_schema => sub { return Schema(); } --