summaryrefslogtreecommitdiff
path: root/t/20-app-dthumb.t
blob: 9a81d0b149e1152a466a997db9450f2b08c61208 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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');