File Coverage

blib/lib/GenOO/RegionCollection/Factory/Requires.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             # POD documentation - main docs before the code
2              
3             =head1 NAME
4              
5             GenOO::RegionCollection::Factory::Requires - Role for a concrete factory that creates GenOO::RegionCollection objects
6              
7             =head1 DESCRIPTION
8              
9             Concrete factories should implement the interface defined in this role
10              
11             =cut
12              
13             # Let the code begin...
14              
15             package GenOO::RegionCollection::Factory::Requires;
16             $GenOO::RegionCollection::Factory::Requires::VERSION = '1.5.2';
17 2     2   1724 use Moose::Role;
  2         6  
  2         19  
18              
19             requires 'read_collection';
20              
21             1;