summary refs log tree commit diff
path: root/t/90_bug_links.t
diff options
context:
space:
mode:
authorSimon Wistow <simon@thegestalt.org>2011-03-07 01:33:58 +0000
committerSimon Wistow <simon@thegestalt.org>2011-03-07 01:33:58 +0000
commita1ba8869c54673400beddff04816c2d2c4a06957 (patch)
tree0b3810b1a28e97f3a620358c0bb34e6e9196e8d9 /t/90_bug_links.t
parentupdated change log (diff)
downloadnet-riak-a1ba8869c54673400beddff04816c2d2c4a06957.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 e1f71db..dd7cc84 100644
--- a/t/90_bug_links.t
+++ b/t/90_bug_links.t
@@ -59,4 +59,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;