File Coverage

blib/lib/HTML/Widget/Constraint/Printable.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             package HTML::Widget::Constraint::Printable;
2              
3 88     88   234316 use warnings;
  88         219  
  88         3168  
4 88     88   480 use strict;
  88         564  
  88         6382  
5 88     88   756 use base 'HTML::Widget::Constraint::Regex';
  88         262  
  88         79348  
6              
7             =head1 NAME
8              
9             HTML::Widget::Constraint::Printable - Printable Constraint
10              
11             =head1 SYNOPSIS
12              
13             my $c = $widget->constraint( 'Printable', 'foo' );
14              
15             =head1 DESCRIPTION
16              
17             Printable Constraint.
18              
19             =head1 METHODS
20              
21             =head2 regex
22              
23             Provides a regex to validate printable characters.
24              
25             =cut
26              
27 12     12 1 81 sub regex {qr/^([[:print:]]*)$/}
28              
29             =head1 AUTHOR
30              
31             Sebastian Riedel, C
32              
33             =head1 LICENSE
34              
35             This library is free software, you can redistribute it and/or modify it under
36             the same terms as Perl itself.
37              
38             =cut
39              
40             1;