blob: 0641086306f64df8ff21f2d69200598d701e4bc7 (
plain) (
blame)
1
2
3
4
5
6
7
|
use Test::More tests => 2;
use strict;
use_ok('Archive::Tar') or diag 'Archive::Tar not found -- exit' && die;
my $tar = new Archive::Tar;
isa_ok( $tar, 'Archive::Tar', 'Object created' );
|