13 lines
224 B
Perl
13 lines
224 B
Perl
#!perl
|
|
use 5.008003;
|
|
use strict;
|
|
use warnings;
|
|
use Test::More;
|
|
|
|
plan tests => 1;
|
|
|
|
BEGIN {
|
|
use_ok( 'App::SortCopies' ) || print "Bail out!\n";
|
|
}
|
|
|
|
diag( "Testing App::SortCopies $App::SortCopies::VERSION, Perl $], $^X" );
|