File Coverage

blib/lib/HTML/FormFu/Constraint/Word.pm
Criterion Covered Total %
statement 7 7 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod 1 1 100.0
total 11 11 100.0


line stmt bran cond sub pod time code
1 6     6   860 use strict;
  6         15  
  6         361  
2              
3             package HTML::FormFu::Constraint::Word;
4             $HTML::FormFu::Constraint::Word::VERSION = '2.07';
5             # ABSTRACT: Single Word Constraint
6              
7 6     6   38 use Moose;
  6         15  
  6         41  
8             extends 'HTML::FormFu::Constraint::Regex';
9              
10             sub regex {
11 24     24 1 95 return qr/^\w*\z/;
12             }
13              
14             __PACKAGE__->meta->make_immutable;
15              
16             1;
17              
18             __END__
19              
20             =pod
21              
22             =encoding UTF-8
23              
24             =head1 NAME
25              
26             HTML::FormFu::Constraint::Word - Single Word Constraint
27              
28             =head1 VERSION
29              
30             version 2.07
31              
32             =head1 DESCRIPTION
33              
34             Ensure the input is a single word. Which characters are considered "word
35             characters" will depend on the current locale.
36              
37             =head1 SEE ALSO
38              
39             Is a sub-class of, and inherits methods from L<HTML::FormFu::Constraint::Regex>,
40             L<HTML::FormFu::Constraint>
41              
42             L<HTML::FormFu>
43              
44             =head1 AUTHOR
45              
46             Carl Franks C<cfranks@cpan.org>
47              
48             =head1 LICENSE
49              
50             This library is free software, you can redistribute it and/or modify it under
51             the same terms as Perl itself.
52              
53             =head1 AUTHOR
54              
55             Carl Franks <cpan@fireartist.com>
56              
57             =head1 COPYRIGHT AND LICENSE
58              
59             This software is copyright (c) 2018 by Carl Franks.
60              
61             This is free software; you can redistribute it and/or modify it under
62             the same terms as the Perl 5 programming language system itself.
63              
64             =cut