bug 2295 [3/4]: moving C4::Items tests into t/lib/KohaTest
[koha.git] / t / lib / KohaTest / Scripts.pm
1 package KohaTest::Scripts;
2 use base qw( KohaTest );
3
4 use strict;
5 use warnings;
6
7 use Test::More;
8
9 use C4::Search;
10 sub testing_class { return; };
11
12 # Since this is an abstract base class, this prevents these tests from
13 # being run directly unless we're testing a subclass. It just makes
14 # things faster.
15 __PACKAGE__->SKIP_CLASS( 1 );
16
17
18 1;