summary refs log tree commit diff
path: root/t/02_missing_object.t
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--t/02_missing_object.t10
1 files changed, 10 insertions, 0 deletions
diff --git a/t/02_missing_object.t b/t/02_missing_object.t
new file mode 100644
index 0000000..93bdf60
--- /dev/null
+++ b/t/02_missing_object.t
@@ -0,0 +1,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';
+};