File Coverage

blib/lib/Schema/Kwalify.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod 0 2 0.0
total 21 23 91.3


line stmt bran cond sub pod time code
1             # -*- mode: cperl; coding: latin-2 -*-
2              
3             #
4             # Author: Slaven Rezic
5             #
6             # Copyright (C) 2006,2007,2020 Slaven Rezic. All rights reserved.
7             # This package is free software; you can redistribute it and/or
8             # modify it under the same terms as Perl itself.
9             #
10             # Mail: slaven@rezic.de
11             # WWW: http://www.rezic.de/eserte/
12             #
13              
14             package Schema::Kwalify;
15              
16 1     1   751 use strict;
  1         2  
  1         28  
17 1     1   5 use warnings;
  1         2  
  1         29  
18              
19 1     1   12 use vars qw($VERSION);
  1         2  
  1         46  
20             $VERSION = '1.05';
21              
22 1     1   15 use Kwalify qw();
  1         3  
  1         102  
23              
24             sub new {
25 1     1 0 596 bless {}, shift;
26             }
27              
28             sub validate {
29 2     2 0 375 my($self, $schema, $data) = @_;
30 2         6 Kwalify::validate($schema, $data);
31             }
32              
33             1;
34              
35             __END__