File Coverage

blib/lib/Clustericious/HelloWorld/Client.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Clustericious::HelloWorld::Client;
2              
3 8     8   561890 use strict;
  8         29  
  8         262  
4 8     8   44 use warnings;
  8         17  
  8         214  
5 8     8   1685 use Clustericious::Client;
  8         29  
  8         61  
6 8     8   2080 use Clustericious::Client::Command;
  8         22  
  8         379  
7              
8             # ABSTRACT: Clustericious hello world client
9             our $VERSION = '1.27'; # VERSION
10              
11             route 'welcome' => "GET", '/';
12              
13             1;
14              
15             __END__
16              
17             =pod
18              
19             =encoding UTF-8
20              
21             =head1 NAME
22              
23             Clustericious::HelloWorld::Client - Clustericious hello world client
24              
25             =head1 VERSION
26              
27             version 1.27
28              
29             =head1 AUTHOR
30              
31             Original author: Brian Duggan
32              
33             Current maintainer: Graham Ollis E<lt>plicease@cpan.orgE<gt>
34              
35             Contributors:
36              
37             Curt Tilmes
38              
39             Yanick Champoux
40              
41             =head1 COPYRIGHT AND LICENSE
42              
43             This software is copyright (c) 2013 by NASA GSFC.
44              
45             This is free software; you can redistribute it and/or modify it under
46             the same terms as the Perl 5 programming language system itself.
47              
48             =cut