diff options
| author | franck cuny <franck@lumberjaph.net> | 2010-06-14 15:45:06 +0200 |
|---|---|---|
| committer | franck cuny <franck@lumberjaph.net> | 2010-06-14 15:45:06 +0200 |
| commit | 0c7665d653db4ae0b8caaa00436d110518c76730 (patch) | |
| tree | c3510ef3bbc1cfe73a97dc0401afced1592493da /t/04_bucket.t | |
| parent | add n::r::client and now client is a n::r::client (diff) | |
| download | net-riak-0c7665d653db4ae0b8caaa00436d110518c76730.tar.gz | |
add more tests
Diffstat (limited to '')
| -rw-r--r-- | t/04_bucket.t | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/t/04_bucket.t b/t/04_bucket.t new file mode 100644 index 0000000..eb46cd7 --- /dev/null +++ b/t/04_bucket.t @@ -0,0 +1,12 @@ +use strict; +use warnings; +use Test::More; + +use Net::Riak::Bucket; +use Net::Riak::Client; + +my $client = Net::Riak::Client->new; +ok my $bucket = Net::Riak::Bucket->new(name => 'foo', client => $client), + 'client created'; + +done_testing; |
