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   875 use strict;
  2         5  
  2         66  
4 2     2   10 use warnings;
  2         4  
  2         50  
5 2     2   40 use 5.010;
  2         7  
6 2     2   9 use Moo;
  2         4  
  2         11  
7              
8             extends 'AnyEvent::FTP::Client::Site::Base';
9              
10             # ABSTRACT: Site specific commands for Microsoft FTP Service
11             our $VERSION = '0.17'; # 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__