File: CriticTests.pm

package info (click to toggle)
libdist-zilla-plugin-test-perl-critic-perl 2.112410-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 160 kB
  • ctags: 3
  • sloc: perl: 167; makefile: 2
file content (65 lines) | stat: -rw-r--r-- 1,531 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#
# This file is part of Dist-Zilla-Plugin-Test-Perl-Critic
#
# This software is copyright (c) 2009 by Jerome Quelin.
#
# This is free software; you can redistribute it and/or modify it under
# the same terms as the Perl 5 programming language system itself.
#
use strict;
use warnings;
package Dist::Zilla::Plugin::CriticTests;
{
  $Dist::Zilla::Plugin::CriticTests::VERSION = '2.112410';
}
# ABSTRACT: (DEPRECATED) tests to check your code against best practices.

use Moose;
extends 'Dist::Zilla::Plugin::Test::Perl::Critic';
use namespace::autoclean;

before register_component => sub {
  warn "!!! [CriticTests] is deprecated and may be removed in the future; replace it with [Test::Perl::Critic]\n";
};


no Moose;
__PACKAGE__->meta->make_immutable;
1;



__END__
=pod

=head1 NAME

Dist::Zilla::Plugin::CriticTests - (DEPRECATED) tests to check your code against best practices.

=head1 VERSION

version 2.112410

=head1 SYNOPSIS

THIS MODULE IS DEPRECATED, PLEASE USE
L<Dist::Zilla::Plugin::Test::Perl::Critic> INSTEAD. IT MAY BE REMOVED AT
A LATER TIME (but not before 2012-08-29).

This module is only a compatibility stub for that module, and should
continue to work as expected - although with a warning.  Refer to the
replacement for the actual documentation.

=head1 AUTHOR

Jerome Quelin

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2009 by Jerome Quelin.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut