diff options
author | Daniel Friesel <derf@finalrewind.org> | 2011-03-02 19:49:44 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2011-03-02 19:49:44 +0100 |
commit | 6905ea23a80deb6b83937637c9e621038d9411d9 (patch) | |
tree | 0b51d4bc6bbac0a009bb5ab2c9b98ad9c8120a41 /t | |
parent | 37e21a2515a4b80ee661a2422204cfc42faf927b (diff) |
Update App::Dthumb filenames, add initial App::Dthumb test
Diffstat (limited to 't')
-rwxr-xr-x | t/20-app-dthumb.t | 13 |
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'); |