File Coverage

blib/lib/Object/Remote/Connector/Local.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 9 9 100.0


line stmt bran cond sub pod time code
1             package Object::Remote::Connector::Local;
2              
3 14     14   175564 use Moo;
  14         27623  
  14         84  
4              
5             with 'Object::Remote::Role::Connector::PerlInterpreter';
6              
7 14     14   6448 no warnings 'once';
  14         27  
  14         502  
8              
9       14     BEGIN { }
10              
11             push @Object::Remote::Connection::Guess, sub {
12             if (($_[0]||'') eq '-') {
13             shift(@_);
14             __PACKAGE__->new(@_);
15             }
16             };
17              
18             1;