somewhat auto-configure
[cloudstore.git] / t / Gearman.t
1 #!/usr/bin/perl
2 use strict;
3 use warnings;
4
5 use Test::More tests => 2;
6 use Data::Dump qw(dump);
7
8 use lib 'lib';
9
10 use_ok 'CloudStore::Gearman';
11
12 my $hostname = `hostname -s`;
13 chomp $hostname;
14
15 ok my $o = CloudStore::Gearman->gearman_do( $hostname . '_s1_quota_get' => 2001 );
16 diag dump $o;
17