File: 11rethrow.t

package info (click to toggle)
liberror-perl 0.17-1
  • links: PTS
  • area: main
  • in suites: lenny, squeeze, wheezy
  • size: 196 kB
  • ctags: 63
  • sloc: perl: 1,056; makefile: 38
file content (50 lines) | stat: -rw-r--r-- 774 bytes parent folder | download | duplicates (2)
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;