File Coverage

blib/lib/Class/MOP/Deprecated.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Class::MOP::Deprecated;
2             our $VERSION = '2.2205';
3              
4 450     450   3541 use strict;
  450         1068  
  450         16791  
5 450     450   2611 use warnings;
  450         1015  
  450         21857  
6              
7 450         4916 use Package::DeprecationManager -deprecations => {
8             'Class::Load wrapper functions' => '2.1100',
9 450     450   94909 };
  450         243213  
10              
11             1;
12              
13             # ABSTRACT: Manages deprecation warnings for Class::MOP
14              
15             __END__
16              
17             =pod
18              
19             =encoding UTF-8
20              
21             =head1 NAME
22              
23             Class::MOP::Deprecated - Manages deprecation warnings for Class::MOP
24              
25             =head1 VERSION
26              
27             version 2.2205
28              
29             =head1 DESCRIPTION
30              
31             use Class::MOP::Deprecated -api_version => $version;
32              
33             =head1 FUNCTIONS
34              
35             This module manages deprecation warnings for features that have been
36             deprecated in Class::MOP.
37              
38             If you specify C<< -api_version => $version >>, you can use deprecated features
39             without warnings. Note that this special treatment is limited to the package
40             that loads C<Class::MOP::Deprecated>.
41              
42             =head1 AUTHORS
43              
44             =over 4
45              
46             =item *
47              
48             Stevan Little <stevan@cpan.org>
49              
50             =item *
51              
52             Dave Rolsky <autarch@urth.org>
53              
54             =item *
55              
56             Jesse Luehrs <doy@cpan.org>
57              
58             =item *
59              
60             Shawn M Moore <sartak@cpan.org>
61              
62             =item *
63              
64             יובל קוג'מן (Yuval Kogman) <nothingmuch@woobling.org>
65              
66             =item *
67              
68             Karen Etheridge <ether@cpan.org>
69              
70             =item *
71              
72             Florian Ragwitz <rafl@debian.org>
73              
74             =item *
75              
76             Hans Dieter Pearcey <hdp@cpan.org>
77              
78             =item *
79              
80             Chris Prather <chris@prather.org>
81              
82             =item *
83              
84             Matt S Trout <mstrout@cpan.org>
85              
86             =back
87              
88             =head1 COPYRIGHT AND LICENSE
89              
90             This software is copyright (c) 2006 by Infinity Interactive, Inc.
91              
92             This is free software; you can redistribute it and/or modify it under
93             the same terms as the Perl 5 programming language system itself.
94              
95             =cut