File Coverage

blib/lib/Statocles/Store/File.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             package Statocles::Store::File;
2             our $VERSION = '0.084';
3             # ABSTRACT: (DEPRECATED) A store made up of plain files
4              
5 1     1   4816 use Statocles::Base 'Class';
  1         2  
  1         15  
6 1     1   6534 use Statocles::Util qw( derp );
  1         3  
  1         101  
7             extends 'Statocles::Store';
8              
9             derp "Statocles::Store::File is deprecated and will be removed in v1.000. Please use Statocles::Store instead.";
10              
11             1;
12              
13             __END__
14              
15             =pod
16              
17             =encoding UTF-8
18              
19             =head1 NAME
20              
21             Statocles::Store::File - (DEPRECATED) A store made up of plain files
22              
23             =head1 VERSION
24              
25             version 0.084
26              
27             =head1 DESCRIPTION
28              
29             This store was removed and its functionality put completely into L<Statocles::Store>.
30             This module is deprecated and will be removed at the 2.0 release according to the
31             deprecation policy L<Statocles::Help::Policy>. See L<Statocles::Help::Upgrading>
32             for how to upgrade.
33              
34             =head1 AUTHOR
35              
36             Doug Bell <preaction@cpan.org>
37              
38             =head1 COPYRIGHT AND LICENSE
39              
40             This software is copyright (c) 2016 by Doug Bell.
41              
42             This is free software; you can redistribute it and/or modify it under
43             the same terms as the Perl 5 programming language system itself.
44              
45             =cut