Blame t/exec.t

Packit 6427f8
#!/usr/bin/perl -w
Packit 6427f8
use strict;
Packit 6427f8
use Test::More tests => 3;
Packit 6427f8
Packit 6427f8
eval {
Packit 6427f8
    use autodie qw(exec);
Packit 6427f8
    exec("this_command_had_better_not_exist", 1);
Packit 6427f8
};
Packit 6427f8
Packit 6427f8
isa_ok($@,"autodie::exception", "failed execs should die");
Packit 6427f8
ok($@->matches('exec'), "exception should match exec");
Packit 6427f8
ok($@->matches(':system'), "exception should match :system");