|
Packit |
745a47 |
The following definitions of requires are not process properly:
|
|
Packit |
745a47 |
|
|
Packit |
745a47 |
# Only the first module is found
|
|
Packit |
745a47 |
use POE qw(System::Wheel Client::HTTP);
|
|
Packit |
745a47 |
|
|
Packit |
745a47 |
use Test::Requires qw(TestRequiresArray1 TestRequiresArray2);
|
|
Packit |
745a47 |
use Test::Requires {TestRequiresHash1 => 0.1, TestRequiresHash2 => 0.2};
|
|
Packit |
745a47 |
|
|
Packit |
745a47 |
# The modules defined by 'with' are not found
|
|
Packit |
745a47 |
use Moose;
|
|
Packit |
745a47 |
with 'Foo::Bar' => { -version => 0.01 },
|
|
Packit |
745a47 |
'Bar::Baz' => { -version => 0.03 };
|
|
Packit |
745a47 |
|
|
Packit |
745a47 |
# Do not process 'no' yet
|
|
Packit |
745a47 |
no File::Path;
|
|
Packit |
745a47 |
|
|
Packit |
745a47 |
# Does not find modules defined at 'eval'
|
|
Packit |
745a47 |
eval{ require File::Spec; 1} or die;
|
|
Packit |
745a47 |
|
|
Packit |
745a47 |
https://metacpan.org/source/ETHER/Module-Runtime-Conflicts-0.001/lib/Module/Runtime/Conflicts.pm
|
|
Packit |
745a47 |
BEGIN { use Test::More }
|