The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl -w
use strict;

use Test::More tests => 3;

{
	use Labyrinth;
	my $labyrinth = Labyrinth->new();
	isa_ok($labyrinth, 'Labyrinth');
	eval { $labyrinth->run() };
	like($@,qr/Cannot read settings file/);

    eval { $labyrinth->run('bogus.file') };
	like($@,qr/Cannot read settings file/);
}