Linux server.nvwebsoft.co.in 3.10.0-1160.114.2.el7.x86_64 #1 SMP Wed Mar 20 15:54:52 UTC 2024 x86_64
Apache
: 162.240.12.249 | : 3.23.102.79
202 Domain
8.1.31
nbspublicschool
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
perl5 /
vendor_perl /
Pod /
POM /
[ HOME SHELL ]
Name
Size
Permission
Action
Node
[ DIR ]
drwxr-xr-x
View
[ DIR ]
drwxr-xr-x
Constants.pm
1.8
KB
-rw-r--r--
Node.pm
18.49
KB
-rw-r--r--
Nodes.pm
1.87
KB
-rw-r--r--
Test.pm
1.58
KB
-rw-r--r--
View.pm
3.05
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Test.pm
#============================================================= -*-Perl-*- # # Pod::POM::Test # # DESCRIPTION # Module implementing some useful subroutines for testing. # # AUTHOR # Andy Wardley <abw@kfs.org> # # COPYRIGHT # Copyright (C) 2000, 2001 Andy Wardley. All Rights Reserved. # # This module is free software; you can redistribute it and/or # modify it under the same terms as Perl itself. # # REVISION # $Id: Test.pm 14 2009-03-13 08:19:40Z ford $ # #======================================================================== package Pod::POM::Test; require 5.004; use strict; use Pod::POM; use base qw( Exporter ); use vars qw( $VERSION @EXPORT ); $VERSION = sprintf("%d.%02d", q$Revision: 1.1.1.1 $ =~ /(\d+)\.(\d+)/); @EXPORT = qw( ntests ok match assert ); my $ok_count; sub ntests { my $ntests = shift; $ok_count = 1; print "1..$ntests\n"; } sub ok { my ($ok, $msg) = @_; if ($ok) { print "ok ", $ok_count++, "\n"; } else { print "FAILED $ok_count: $msg\n" if defined $msg; print "not ok ", $ok_count++, "\n"; } } sub assert { my ($ok, $err) = @_; return ok(1) if $ok; # failed my ($pkg, $file, $line) = caller(); $err ||= "assert failed"; $err .= " at $file line $line\n"; ok(0); die $err; } sub match { my ($result, $expect) = @_; # force stringification of $result to avoid 'no eq method' overload errors $result = "$result" if ref $result; if ($result eq $expect) { ok(1); } else { print "FAILED $ok_count:\n expect: [$expect]\n result: [$result]\n"; ok(0); } } 1;
Close