pass gearman timeout option correctly
[APKPM.git] / t / CRM.t
1 #!/usr/bin/perl
2 use strict;
3 use warnings;
4
5 use Test::More tests => 3;
6 use Data::Dump qw(dump);
7
8 use lib 'lib';
9
10 use_ok 'APKPM::CRM';
11
12 my $what = join(' ', @ARGV);
13 $what  ||= 'test';
14
15 ok my $o = APKPM::CRM->new, 'new';
16
17 ok my $r = $o->search( 'job', $what ), "search $what";
18 diag dump($r);