Fix [perl #66970] Incorrect coderef in MODIFY_CODE_ATTRIBUTES
[p5sagit/p5-mst-13.2.git] / ext / Archive-Tar / t / 01_use.t
CommitLineData
39713df4 1use Test::More tests => 2;
2use strict;
3
4use_ok('Archive::Tar') or diag 'Archive::Tar not found -- exit' && die;
5
6my $tar = new Archive::Tar;
7isa_ok( $tar, 'Archive::Tar', 'Object created' );