File Coverage

blib/lib/KiokuDB/Set/Stored.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             #!/usr/bin/perl
2              
3             package KiokuDB::Set::Stored;
4 12     12   55 use Moose;
  12         20  
  12         65  
5              
6 12     12   58662 use namespace::clean -except => 'meta';
  12         23  
  12         111  
7              
8             extends qw(KiokuDB::Set::Base);
9              
10             has _objects => ( is => "ro" );
11              
12             __PACKAGE__->meta->make_immutable;
13              
14             __PACKAGE__
15              
16             __END__
17              
18             =pod
19              
20             =head1 NAME
21              
22             KiokuDB::Set::Stored - Stored representation of L<KiokuDB::Set> objects.
23              
24             =head1 SYNOPSIS
25              
26             # used internally by L<KiokuDB::TypeMap::Entry::Set>
27              
28             =head1 DESCRIPTION
29              
30             This object is the persisted representation of all L<KiokuDB::Set> objects.
31              
32             It is used internall after collapsing and before expanding, for simplicity.
33