AE-AdHoc

 view release on metacpan or  search on metacpan

t/12-nested-dies.t  view on Meta::CPAN

#!/usr/bin/perl -w

use strict;
use Test::More;
use Test::Exception;

use AE::AdHoc;
$AE::AdHoc::warnings = 0;

plan tests => 1;
throws_ok {
	ae_recv {
		ae_recv {
		} 1;
	} 2;
} qr(nested)i, "Nested calls not allowed";

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 0.442 second using v1.00-cache-2.02-grep-82fe00e-cpan-2c419f77a38b )