/usr/local/share/perl5
NameSizeModeActions
App/-0755rm
AppConfig/-0755rm
Archive/-0755rm
Canary/-0755rm
Compress/-0755rm
CPAN/-0755rm
Curses/-0755rm
Date/-0755rm
ExtUtils/-0755rm
File/-0755rm
Getopt/-0755rm
HDB/-0755rm
HTML/-0755rm
HTTP/-0755rm
IO/-0755rm
JSON/-0755rm
lib/-0755rm
local/-0755rm
LWP/-0755rm
Module/-0755rm
Mozilla/-0755rm
Net/-0755rm
Parse/-0755rm
POD2/-0755rm
TAP/-0755rm
Term/-0755rm
Test/-0755rm
Test2/-0755rm
Text/-0755rm
Time/-0755rm
Try/-0755rm
Types/-0755rm
WWW/-0755rm
x86_64-linux-thread-multi/-0755rm
XML/-0755rm
YAML/-0755rm
AppConfig.pm324640444editdlrm
cPanelUserConfig.pm5610644editdlrm
Expect.pm1004470444editdlrm
HDB.pm142010444editdlrm
LWP.pm216580444editdlrm
lwpcook.pod92650444editdlrm
lwptut.pod254810444editdlrm
newgetopt.pl22060444editdlrm
ok.pm9670444editdlrm
SUPER.pm67570444editdlrm
Switch.pm288130444editdlrm
Test2.pm63530444editdlrm
TimeDate.pm2670444editdlrm
YAML.pm26330444editdlrm
YAML.pod222350444editdlrm
Edit: /usr/local/share/perl5/ok.pm (967B)
package ok; $ok::VERSION = '1.302062'; use strict; use Test::More (); sub import { shift; if (@_) { goto &Test::More::pass if $_[0] eq 'ok'; goto &Test::More::use_ok; } # No argument list - croak as if we are prototyped like use_ok() my (undef, $file, $line) = caller(); ($file =~ /^\(eval/) or die "Not enough arguments for 'use ok' at $file line $line\n"; } __END__ =encoding UTF-8 =head1 NAME ok - Alternative to Test::More::use_ok =head1 SYNOPSIS use ok 'Some::Module'; =head1 DESCRIPTION With this module, simply change all C in test scripts to C, and they will be executed at C time. Please see L for the full description. =head1 CC0 1.0 Universal To the extent possible under law, 唐鳳 has waived all copyright and related or neighboring rights to L. This work is published from Taiwan. L =cut