partition tables using date
[APKPM.git] / t / Bitstream.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::Bitstream';
11
12 ok my $o = APKPM::Bitstream->new( server => 'localhost:4730' ), 'new';
13
14 ok my $r = $o->poll( 'job', '' ), 'poll';
15 diag dump($r);
16