summaryrefslogtreecommitdiff
path: root/t/11rethrow.t
blob: 227bca5ab9639164a4a88031887a0fb71ae9188c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/perl

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

try {
	try { die "inner" }
	catch Error::Simple with { die "foobar" };
}
otherwise
{
	my $err = shift;
    # TEST
    ok (scalar($err =~ /foobar/), "Error rethrown");
};

try {
	try { die "inner" }
	catch Error::Simple with { throw Error::Simple "foobar" };
}
otherwise
{
	my $err = shift;
    # TEST
	ok (scalar("$err" =~ /foobar/), "Thrown Error::Simple");
};

try {
	try { die "inner" }
	otherwise { die "foobar" };
}
otherwise
{
    my $err = shift;
    # TEST
	ok (scalar("$err" =~ /foobar/), "die foobar");
};

try {
	try { die "inner" }
	catch Error::Simple with { throw Error::Simple "foobar" };
}
otherwise
{
	my $err = shift;
    # TEST
	ok (scalar($err =~ /foobar/), "throw Error::Simple");
};

1;