• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/Module/H27-Nov-2011-14344

t/H27-Nov-2011-4939

CHANGESH A D27-Nov-2011784 2117

MANIFESTH A D27-Nov-2011267 98

META.jsonH A D27-Nov-2011984 4746

META.ymlH A D27-Nov-2011552 2524

Makefile.PLH A D27-Nov-20111.6 KiB4237

READMEH A D27-Nov-20111.3 KiB4429

README

1This is the README file for Module::Loaded, a module that lets you
2mark modules as being loaded/unloaded
3
4Please refer to 'perldoc Module::Loaded' after installation for
5details.
6
7#####################################################################
8
9* Description
10
11Module::Loaded
12
13    When testing applications, often you find yourself needing to provide
14    functionality in your test environment that would usually be provided
15    by external modules. Rather than munging the %INC by hand to mark
16    these external modules as loaded, so they are not attempted to be loaded
17    by perl, this module offers you a very simple way to mark modules as
18    loaded and unloaded.
19
20#####################################################################
21
22* Installation
23
24Module::Loaded follows the standard perl module install process
25
26perl Makefile.PL
27make
28make test
29make install
30
31The module uses no C or XS parts, so no c-compiler is required.
32
33######################################################################
34
35AUTHOR
36    This module by Jos Boumans <kane@cpan.org>.
37
38COPYRIGHT
39    This module is copyright (c) 2005 Jos Boumans <kane@cpan.org>. All
40    rights reserved.
41
42    This library is free software; you may redistribute and/or modify it
43    under the same terms as Perl itself.
44