����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
#!/usr/bin/perl -Tw
# Make sure caller() is undisturbed.
use strict;
use warnings;
use Test::Exception;
use Test::More tests => 3;
eval { die caller() . "\n" };
is( $@, "main\n" );
throws_ok { die caller() . "\n" } qr/^main$/;
# Make sure our override of caller() does not mess up @DB::args and thus Carp
# The test is rather strange, but there is no clearer way to trigger this
# error. For details see:
# http://rt.perl.org/rt3/Public/Bug/Display.html?id=52610#txn-713770
require Carp;
my $croaker = sub { Carp::croak ('No bizarre errors') };
for my $x (1..1) {
eval { $croaker->($x) };
}
throws_ok (
sub { $croaker->() },
qr/No bizarre errors/,
"Croak works properly (final)",
);
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Exception.t | File | 4.44 KB | 0644 |
|
| caller.t | File | 702 B | 0644 |
|
| edge-cases.t | File | 2.07 KB | 0644 |
|
| import.t | File | 189 B | 0644 |
|
| isa.t | File | 409 B | 0644 |
|
| lives_and.t | File | 880 B | 0644 |
|
| preserve.t | File | 488 B | 0644 |
|
| return.t | File | 1.43 KB | 0644 |
|
| rt.t | File | 550 B | 0644 |
|
| stacktrace.t | File | 1 KB | 0644 |
|
| throws_ok.t | File | 205 B | 0644 |
|