use CloudStore::API
[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 ok my $o = CloudStore::Gearman->gearman_do( 'narada_s1_quota_get' => 2001 );
13 diag dump $o;
14