summaryrefslogblamecommitdiff
path: root/xt/tests/Test/KiokuDB/Backend/Riak.pm
blob: 0786a3e84abffb74829c0dd0ac0085d2f86fdeaf (plain) (tree)
























                                      
package Test::KiokuDB::Backend::Riak;

use strict;
use warnings;
use base 'Test::Class';
use Test::Exception;
use Test::More;

sub class { 'KiokuDB::Backend::Riak' }

sub startup : Tests(startup => 1) {
    my $test = shift;
    use_ok $test->class, "use ok";
}

sub shutdown : Tests(shutdown) {
    my $test = shift;
}

sub constructor : Tests(1) {
    my $test = shift;
    can_ok $test->class, 'new';
}

1;