summaryrefslogblamecommitdiff
path: root/t/04_bucket.t
blob: eb46cd78c10c4584f7f44b62a20632d4a94c25f8 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                                         
use strict;
use warnings;
use Test::More;

use Net::Riak::Bucket;
use Net::Riak::Client;

my $client = Net::Riak::Client->new;
ok my $bucket = Net::Riak::Bucket->new(name => 'foo', client => $client),
  'client created';

done_testing;