summaryrefslogtreecommitdiff
path: root/t/20-app-dthumb.t
diff options
context:
space:
mode:
Diffstat (limited to 't/20-app-dthumb.t')
-rwxr-xr-xt/20-app-dthumb.t13
1 files changed, 13 insertions, 0 deletions
diff --git a/t/20-app-dthumb.t b/t/20-app-dthumb.t
new file mode 100755
index 0000000..9a81d0b
--- /dev/null
+++ b/t/20-app-dthumb.t
@@ -0,0 +1,13 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use 5.010;
+use autodie;
+
+use Test::More tests => 2;
+
+use_ok('App::Dthumb');
+
+my $dthumb = App::Dthumb->new();
+
+isa_ok($dthumb, 'App::Dthumb');