File: chained_exit.t

package info (click to toggle)
libcgi-compile-perl 0.27-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 248 kB
  • sloc: perl: 372; makefile: 2
file content (17 lines) | stat: -rw-r--r-- 244 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use strict;
use warnings;

use Test::More tests => 2;
use Test::NoWarnings;

my $exit_chained;

sub CORE::GLOBAL::exit (;$) {
    $exit_chained = 1;
}

use CGI::Compile;

eval "exit";

is $exit_chained, 1, 'exit chained to CORE::GLOBAL::exit';