NAME
Module::Path::Patch::Hide - Hide some modules from Module::Path
VERSION
This document describes version 0.001 of Module::Path::Patch::Hide (from Perl distribution Module-Path-Patch-Hide), released on 2016-07-10.
SYNOPSIS
% PERL5OPT=-MModule::Path::Patch::Hide=-module,'Foo::Bar;Baz' app.pl
In the above example app.pl
will think that Foo::Bar
and Baz
are not installed even though they might actually be installed.
DESCRIPTION
This module can be used to simulate the absence of certain modules. This only works if the application uses Module::Path's module_path()
to check the availability of modules.
This module works by patching module_path()
to return empty result if user asks the modules that happen to be hidden.
PATCH CONTENTS
wrap
module_path
PATCH CONFIGURATION
-module => str
A string containing semicolon-separated list of module names to hide.
HOMEPAGE
Please visit the project's homepage at https://metacpan.org/release/Module-Path-Patch-Hide.
SOURCE
Source repository is at https://github.com/perlancar/perl-Module-Path-Patch-Hide.
BUGS
Please report any bugs or feature requests on the bugtracker website https://rt.cpan.org/Public/Dist/Display.html?Name=Module-Path-Patch-Hide
When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.
SEE ALSO
Module::Path::More::Patch::Hide
If the application checks he availability of modules by actually trying to require()
them, you can try: lib::filter, lib::disallow.
AUTHOR
perlancar <perlancar@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2016 by perlancar@cpan.org.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.