File Coverage

blib/lib/Graph/Line/SelfLoopVertex.pm
Criterion Covered Total %
statement 8 8 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod 0 1 0.0
total 11 12 91.6


line stmt bran cond sub pod time code
1             package Graph::Line::SelfLoopVertex;
2              
3 6     6   41 use strict;
  6         14  
  6         167  
4 6     6   29 use warnings;
  6         11  
  6         439  
5              
6             # ABSTRACT: Marker for artificial self-loops
7             our $VERSION = '0.1.0'; # VERSION
8              
9             sub new
10             {
11 2     2 0 6 my( $class ) = @_;
12 2         7 return bless {}, $class;
13             }
14              
15             1;
16              
17             __END__