summaryrefslogtreecommitdiff
path: root/t/13except-arg0.t
blob: 5bc949791c03e0bb23c2b160fff920011da69ebe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/perl

use strict;
use warnings;

use Error qw(:try);
use Test::More tests => 2;

my $arg_0;

try {
    throw Error::Simple( "message" );
}
except {
    $arg_0 = shift;
    return {
      'Error::Simple' => sub {},
    };
};

ok( defined $arg_0,     'defined( $_[0] ) after throw/except' );
ok( ref $arg_0     && $arg_0->isa( "Error::Simple" ),     '$_[0]->isa( "Error::Simple" ) after throw/except' );