summaryrefslogtreecommitdiff
path: root/t/29-app-raps2.t
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2011-04-02 19:24:39 +0200
committerDaniel Friesel <derf@finalrewind.org>2011-04-02 19:24:39 +0200
commitc9b94ac51383501ea80e0485cba4f891dbcce3fa (patch)
treee5321502d8314782be6eac912ea5954027bb412c /t/29-app-raps2.t
parentf60183e0f4d95432b55926817ff9a32ebbaf6713 (diff)
Switch to App::Raps2. Still missing documentation, errorchecking and tests
Diffstat (limited to 't/29-app-raps2.t')
-rw-r--r--t/29-app-raps2.t11
1 files changed, 11 insertions, 0 deletions
diff --git a/t/29-app-raps2.t b/t/29-app-raps2.t
new file mode 100644
index 0000000..28fe4fc
--- /dev/null
+++ b/t/29-app-raps2.t
@@ -0,0 +1,11 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use 5.010;
+
+use Test::More tests => 2;
+
+use_ok('App::Raps2');
+
+my $r2 = App::Raps2->new();
+isa_ok($r2, 'App::Raps2');