File Coverage

blib/lib/BBCode/Tag/Q.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 1 1 100.0
total 15 15 100.0


line stmt bran cond sub pod time code
1             # $Id: Q.pm 284 2006-12-01 07:51:49Z chronos $
2             package BBCode::Tag::Q;
3 1     1   6 use base qw(BBCode::Tag::Simple BBCode::Tag::Inline);
  1         2  
  1         135  
4 1     1   6 use strict;
  1         2  
  1         38  
5 1     1   8 use warnings;
  1         1  
  1         93  
6             our $VERSION = '0.34';
7              
8             sub BodyPermitted($):method {
9 5     5 1 18 return 1;
10             }
11              
12             1;