Adding Bib-1 test case.
[irspy-moved-to-github.git] / lib / ZOOM / IRSpy / Test / Main.pm
1 # $Id: Main.pm,v 1.4 2006-09-26 13:12:28 sondberg Exp $
2
3 package ZOOM::IRSpy::Test::Main;
4
5 use 5.008;
6 use strict;
7 use warnings;
8
9 use ZOOM::IRSpy::Test;
10 our @ISA;
11 @ISA = qw(ZOOM::IRSpy::Test);
12
13
14 =head1 NAME
15
16 ZOOM::IRSpy::Test::Main - a single test for IRSpy
17
18 =head1 SYNOPSIS
19
20  ## To follow
21
22 =head1 DESCRIPTION
23
24 I<## To follow>
25
26 =cut
27
28 sub run {
29     my $this = shift();
30
31     #return $this->run_tests(qw(Ping Search::Bib1));
32     return $this->run_tests(qw(Ping Search::Title Search::Bib1));
33 }
34
35
36 =head1 SEE ALSO
37
38 ZOOM::IRSpy
39
40 =head1 AUTHOR
41
42 Mike Taylor, E<lt>mike@indexdata.comE<gt>
43
44 =head1 COPYRIGHT AND LICENSE
45
46 Copyright (C) 2006 by Index Data ApS.
47
48 This library is free software; you can redistribute it and/or modify
49 it under the same terms as Perl itself, either Perl version 5.8.7 or,
50 at your option, any later version of Perl 5 you may have available.
51
52 =cut
53
54 1;