File Coverage

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


line stmt bran cond sub pod time code
1             # $Id: OL.pm 284 2006-12-01 07:51:49Z chronos $
2             package BBCode::Tag::OL;
3 1     1   8 use base qw(BBCode::Tag::LIST);
  1         3  
  1         175  
4 1     1   8 use strict;
  1         3  
  1         39  
5 1     1   7 use warnings;
  1         2  
  1         102  
6             our $VERSION = '0.34';
7              
8             sub ListDefault($):method {
9 1     1 0 6 return qw(ol);
10             }
11              
12             1;