summary refs log tree commit diff
path: root/t
diff options
context:
space:
mode:
authorSimon Wistow <simon@thegestalt.org>2011-03-07 01:33:58 +0000
committerRobin Edwards <robin.ge@gmail.com>2011-03-14 08:55:52 +0000
commit9e3c0d991a3703a0d9021b2c9caf93d040c5f3b1 (patch)
tree21a8de815b3915d100a67f1643f95a2a6ad64b60 /t
parentadded skip if riak env not set (diff)
downloadnet-riak-9e3c0d991a3703a0d9021b2c9caf93d040c5f3b1.tar.gz
Fix remove_link
Diffstat (limited to '')
-rw-r--r--t/90_bug_links.t3
1 files changed, 3 insertions, 0 deletions
diff --git a/t/90_bug_links.t b/t/90_bug_links.t
index 1c209eb..0c464ba 100644
--- a/t/90_bug_links.t
+++ b/t/90_bug_links.t
@@ -60,4 +60,7 @@ my $links = $test_links->links;
 is $links->[0]->key, 'griffinp', 'good owner for first link';
 is $links->[1]->key, 'griffins', 'good owner for second link';
 
+$test_links->remove_link($links->[0]);
+$links = $test_links->links;
+is $links->[0]->key, 'griffins', 'good owner for second link after a remove link';
 done_testing;