File Coverage

blib/lib/Perl6/Pod/FormattingCode/Z.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1             #===============================================================================
2             #
3             # DESCRIPTION: Inline comments
4             #
5             # AUTHOR: Aliaksandr P. Zahatski,
6             #===============================================================================
7             package Perl6::Pod::FormattingCode::Z;
8              
9             =pod
10              
11             =head1 NAME
12              
13             Perl6::Pod::FormattingCode::Z - Inline comments
14              
15             =head1 SYNOPSIS
16              
17             The "exeunt" command Z is used
18             to quit all applications.
19              
20             =head1 DESCRIPTION
21              
22             The CE> formatting code indicates that its contents constitute a
23             B, which should not be rendered by any renderer.
24             For example:
25              
26             The "exeunt" command Z is used
27             to quit all applications.
28             =cut
29              
30 3     3   17 use warnings;
  3         6  
  3         98  
31 3     3   16 use strict;
  3         7  
  3         70  
32 3     3   17 use Data::Dumper;
  3         4  
  3         151  
33 3     3   17 use Perl6::Pod::FormattingCode;
  3         8  
  3         73  
34 3     3   16 use base 'Perl6::Pod::FormattingCode';
  3         5  
  3         273  
35             our $VERSION = '0.01';
36              
37             1;
38             __END__