File Coverage

blib/lib/AnyEvent/FTP/Client/Site/Microsoft.pm
Criterion Covered Total %
statement 11 12 91.6
branch n/a
condition n/a
subroutine 4 5 80.0
pod 1 1 100.0
total 16 18 88.8


line stmt bran cond sub pod time code
1             package AnyEvent::FTP::Client::Site::Microsoft;
2              
3 2     2   587 use strict;
  2         4  
  2         44  
4 2     2   7 use warnings;
  2         4  
  2         32  
5 2     2   22 use 5.010;
  2         6  
6 2     2   8 use Moo;
  2         3  
  2         7  
7              
8             extends 'AnyEvent::FTP::Client::Site::Base';
9              
10             # ABSTRACT: Site specific commands for Microsoft FTP Service
11             our $VERSION = '0.19'; # VERSION
12              
13              
14             # TODO add a test for this
15 0     0 1   sub dirstyle { shift->client->push_command([SITE => 'DIRSTYLE'] ) }
16              
17             1;
18              
19             __END__