File Coverage

blib/lib/Graph/Grammar/Rule/NoMoreVertices.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::Grammar::Rule::NoMoreVertices;
2              
3             # ABSTRACT: Marker for rules where no more vertices are allowed
4             our $VERSION = '0.2.0'; # VERSION
5              
6 2     2   11 use strict;
  2         5  
  2         67  
7 2     2   8 use warnings;
  2         4  
  2         197  
8              
9             sub new
10             {
11 1     1 0 3 my $class = shift;
12 1         10 return bless {}, $class;
13             }
14              
15             1;