summaryrefslogtreecommitdiff
path: root/xt
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--xt/run.t4
-rw-r--r--xt/tests/Test/AnyEvent/Riak.pm25
2 files changed, 0 insertions, 29 deletions
diff --git a/xt/run.t b/xt/run.t
deleted file mode 100644
index 6a824fe..0000000
--- a/xt/run.t
+++ /dev/null
@@ -1,4 +0,0 @@
-use lib 'xt/tests';
-use Test::AnyEvent::Riak;
-
-Test::Class->runtests;
diff --git a/xt/tests/Test/AnyEvent/Riak.pm b/xt/tests/Test/AnyEvent/Riak.pm
deleted file mode 100644
index 3e621fc..0000000
--- a/xt/tests/Test/AnyEvent/Riak.pm
+++ /dev/null
@@ -1,25 +0,0 @@
-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;