Alt-IO-All-new

 view release on metacpan or  search on metacpan

t/usage.t  view on Meta::CPAN

use lib 'inc';
use TestML;

TestML->new(
    testml => join('', <DATA>),
)->run;

__END__
%TestML 0.1.0

# Plan = 1;

Label = 'Skipping all for now'
1 == 1;

# *perl.eval.manifest == *with;

=== No plugin modules asked for
--- perl
package Foo;
use IO::All;
--- with
Foo
IO::All::File
IO::All::Dir

=== Declare plugins to work with
--- perl
package Bar;
use IO::All with => [qw'File Socket'];
--- with
Bar
IO::All::File
IO::All::Socket

=== Declare plugins in reverse order
--- perl
package Baz;
use IO::All with => [qw'Socket File'];
--- with
Baz
IO::All::Socket
IO::All::File




( run in 0.594 second using v1.01-cache-2.11-cpan-39bf76dae61 )