diff options
| author | Robin Edwards <robin.ge@gmail.com> | 2011-04-20 14:38:43 +0100 |
|---|---|---|
| committer | Robin Edwards <robin.ge@gmail.com> | 2011-04-20 14:38:43 +0100 |
| commit | 79bea382fd2c0753ca9ace79a11bb74c9a1d722b (patch) | |
| tree | bde42a47792a27e0a863ee527b88c8c24258f7e9 /t/02_client.t | |
| parent | Merge remote branch 'simon/fix_link_encoding' (diff) | |
| download | net-riak-79bea382fd2c0753ca9ace79a11bb74c9a1d722b.tar.gz | |
merged pbc branch to master
Diffstat (limited to 't/02_client.t')
| -rw-r--r-- | t/02_client.t | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/t/02_client.t b/t/02_client.t deleted file mode 100644 index f90621e..0000000 --- a/t/02_client.t +++ /dev/null @@ -1,20 +0,0 @@ -use strict; -use warnings; - -use Test::More; - -use Net::Riak; -use Net::Riak::Client; - -my $riak = Net::Riak->new(r => 3, w => 4, dw => 5); -is $riak->client->r, 3, 'r set to 3'; -is $riak->client->dw, 5, 'r set to 5'; - -$riak = Net::Riak::Client->new(r => 5, w => 4, dw => 3); -is $riak->r, 5, 'r set to 5'; -is $riak->dw, 3, 'r set to 3'; - -ok $riak->client_id, 'id set'; - -done_testing; - |
