summaryrefslogblamecommitdiff
path: root/xt/tests/Test/AnyEvent/Riak.pm
blob: 3e621fcfb2bed9d6f3bb3eb5b9a657cfc07ff7f6 (plain) (tree)
























                                   
package Test::AnyEvent::Riak;

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

sub class { 'AnyEvent::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;