Blame t/crickey.t

Packit 6427f8
#!/usr/bin/perl -w
Packit 6427f8
use strict;
Packit 6427f8
use FindBin;
Packit 6427f8
use Test::More 'no_plan';
Packit 6427f8
Packit 6427f8
use lib "$FindBin::Bin/lib";
Packit 6427f8
Packit 6427f8
use constant NO_SUCH_FILE => "crickey_mate_this_file_isnt_here_either";
Packit 6427f8
Packit 6427f8
use autodie::test::au qw(open);
Packit 6427f8
Packit 6427f8
eval {
Packit 6427f8
    open(my $fh, '<', NO_SUCH_FILE);
Packit 6427f8
};
Packit 6427f8
Packit 6427f8
ok(my $e = $@, 'Strewth!  autodie::test::au should throw an exception on failure');
Packit 6427f8
Packit 6427f8
isa_ok($e, 'autodie::test::au::exception',
Packit 6427f8
    'Yeah mate, that should be our test exception.');
Packit 6427f8
Packit 6427f8
like($e, qr/time for a beer/, "Time for a beer mate?");
Packit 6427f8
Packit 6427f8
like( eval { $e->time_for_a_beer; },
Packit 6427f8
    qr/time for a beer/, "It's always a good time for a beer."
Packit 6427f8
);
Packit 6427f8
Packit 6427f8
ok($e->matches('open'), "Should be a fair dinkum error from open");