| Server IP : 127.0.0.1 / Your IP : 216.73.216.48 Web Server : Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.2.12 System : Windows NT DESKTOP-3H4FHQJ 10.0 build 19045 (Windows 10) AMD64 User : win 10 ( 0) PHP Version : 8.2.12 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : D:/xampp/perl/lib/Test/Deep/ |
Upload File : |
use strict;
use warnings;
# this is for people who don't want Test::Builder to be loaded but want to
# use eq_deeply. It's a bit hacky...
package Test::Deep::NoTest;
our $NoTest;
{
local $NoTest = 1;
require Test::Deep;
}
sub import {
my $import = Test::Deep->can("import");
# make the stack look like it should for use Test::Deep
my $pkg = shift;
unshift(@_, "Test::Deep");
push @_, '_notest';
goto &$import;
}
1;
=head1 NAME
Test::Deep::NoTest - Use Test::Deep outside of the testing framework
=head1 SYNOPSIS
use Test::Deep::NoTest;
if (eq_deeply($a, $b)) {
print "they were deeply equal\n";
}
=head1 DESCRIPTION
This exports all the same things as Test::Deep but it does not load
Test::Builder so it can be used in ordinary non-test situations.