File Coverage

blib/lib/AnyEvent/FTP/Client/Site/NetFtpServer.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::NetFtpServer;
2              
3 2     2   858 use strict;
  2         6  
  2         66  
4 2     2   12 use warnings;
  2         4  
  2         50  
5 2     2   34 use 5.010;
  2         8  
6 2     2   11 use Moo;
  2         4  
  2         11  
7              
8             extends 'AnyEvent::FTP::Client::Site::Base';
9              
10             # ABSTRACT: Site specific commands for Net::FTPServer
11             our $VERSION = '0.18'; # VERSION
12              
13              
14             # TODO add a test for this
15 0     0 1   sub version { shift->client->push_command([SITE => 'VERSION'] ) }
16              
17              
18             1;
19              
20             __END__