/
usr
/
share
/
perl5
/
vendor_perl
/
Pod
/
POM
/
/usr/share/perl5/vendor_perl/Pod/POM
mkdir
upload
Name
Size
Mode
Actions
Node/
-
0755
rm
View/
-
0755
rm
Constants.pm
1802
0644
edit
dl
rm
Node.pm
18856
0644
edit
dl
rm
Nodes.pm
1892
0644
edit
dl
rm
Test.pm
1587
0644
edit
dl
rm
View.pm
3114
0644
edit
dl
rm
Edit:
/usr/share/perl5/vendor_perl/Pod/POM/Test.pm
(1587B)
#============================================================= -*-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; $Pod::POM::Test::VERSION = '2.01'; require 5.006; use strict; use warnings; use Pod::POM; use parent qw( Exporter ); use vars qw( @EXPORT ); @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;
Save
cmd:
run