The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
BEGIN
{
	use strict;	
	use Test::More 'no_plan';
	# MIDI::Simple uses unquoted strings, but it's yummy.
	$SIG{__WARN__} = sub { return $_[0] unless $_[0] =~ /Unquoted string/ };

	#################
	# test module use
	#################
	use_ok('POE');
	use_ok('POE::Framework::MIDI::POEConductor');
	ok(my $c = POE::Framework::MIDI::POEConductor->new( 
		musician_names => ['ian','ike']));
	
}