AI-MicroStructure
view release on metacpan or search on metacpan
use strict;
use Test::More;
use AI::MicroStructure;
plan tests => 2;
NEW_OK: {
my $meta = AI::MicroStructure->new('foo');
isa_ok( $meta, 'AI::MicroStructure' );
}
NEW_UNKNOWN: {
my $meta = eval { AI::MicroStructure->new('bam') };
isa_ok( $meta, 'AI::MicroStructure' );
}
1;
( run in 0.465 second using v1.01-cache-2.11-cpan-39bf76dae61 )