File Coverage

blib/lib/Perl6/Pod/Block/comment.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 Perl6::Pod::Block::comment;
2              
3             =pod
4              
5             =head1 NAME
6              
7             Perl6::Pod::Block::comment - handle =comment block
8              
9             =head1 SYNOPSIS
10              
11             =comment Don't nest this code block in the usual way...
12              
13             =head1 DESCRIPTION
14              
15             B<=comment> - Content to be ignored by all renderers
16              
17             =cut
18              
19 3     3   15 use warnings;
  3         6  
  3         99  
20 3     3   17 use strict;
  3         5  
  3         106  
21 3     3   16 use Perl6::Pod::Block;
  3         7  
  3         91  
22 3     3   14 use base 'Perl6::Pod::Block';
  3         5  
  3         277  
23             our $VERSION = '0.01';
24              
25             1;
26              
27             __END__