summary refs log tree commit diff
path: root/t/02_missing_object.t
blob: 93bdf6016b1959ca99131d96116bb88ecd603201 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
use lib 't/lib';
use Test::More;
use Test::Riak;

test_riak {
    my ($client, $bucket_name) = @_;
    my $bucket = $client->bucket($bucket_name);
    my $obj    = $bucket->get("missing");
    ok !$obj->data, 'no data';
};