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   1208 use strict;
  2         5  
  2         73  
4 2     2   13 use warnings;
  2         5  
  2         58  
5 2     2   48 use 5.010;
  2         8  
6 2     2   12 use Moo;
  2         4  
  2         27  
7              
8             extends 'AnyEvent::FTP::Client::Site::Base';
9              
10             # ABSTRACT: Site specific commands for Microsoft FTP Service
11             our $VERSION = '0.18'; # 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__