File Coverage

blib/lib/HTML/Video/Embed/Module.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package HTML::Video::Embed::Module;
2 11     11   114746 use Moo::Role;
  11         28  
  11         73  
3              
4             has 'domain_reg' => (
5             'is' => 'lazy',
6             'init_arg' => undef,
7             );
8              
9             has 'validate_reg' => (
10             'is' => 'lazy',
11             'init_arg' => undef,
12             );
13              
14             requires '_build_domain_reg';
15             requires '_build_validate_reg';
16             requires 'process';
17              
18             1;