Test::File::ShareDir::Object::Module(3) User Contributed Perl Documentation Test::File::ShareDir::Object::Module(3)

Test::File::ShareDir::Object::Module - Object Oriented ShareDir creation for modules

version 1.001002

    use Test::File::ShareDir::Object::Module;
    my $dir = Test::File::ShareDir::Object::Module->new(
        root    => "some/path",
        modules => {
            "Hello::Nurse" => "share/HN"
        },
    );
    $dir->install_all_modules;
    $dir->add_to_inc;

    my @names = $instance->module_names();

Returns the names of all modules listed in the "modules" set.

    my $dir = $instance->module_share_target_dir("Module::Name");

Returns the path where the "ShareDir" will be created for "Module::Name"

    my $dir = $instance->module_share_source_dir("Module::Name");

Returns the path where the "ShareDir" will be COPIED FROM for "Module::Name"

    $instance->install_module("Module::Name");

Installs "Module::Name"'s "ShareDir"

    $instance->install_all_modules();

Installs all "module_names".

DEPRECATED: Use "register" instead.

    $instance->register();

Adds the "Tempdir" "ShareDir" ( "inc" ) to the global @INC

Since 1.001000

    $instance->clear();

Removes the "Tempdir" "ShareDir" ( "inc" ) from the global @INC

Since 1.001000

A "Test::File::ShareDir::Object::Inc" object.

A hash of :

    Module::Name => "relative/path"

The origin all paths's are relative to.

( Defaults to "cwd" )

Kent Fredric <kentnl@cpan.org>

This software is copyright (c) 2017 by Kent Fredric <kentnl@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.

2017-03-01 perl v5.34.0