The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Audio::Nama;
use Test::More tests => 1;
use strict;
use warnings;
no warnings qw(uninitialized);
use Cwd;

BEGIN { use_ok('Audio::Nama::IO') };

# `make test'. After `make install' it should work as `perl 1.t'

$ENV{NAMA_VERBOSE_TEST_OUTPUT} and diag ("TESTING $0\n");

=comment
my $io = Audio::Nama::IO->new( qw[ type raw
						object loop,mix
						format s16_le,2,44100 ] );

	is( $io->type, 'raw', 'IO object create, access');
=cut

1;
__END__