line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
1
|
|
|
1
|
|
1944735
|
use 5.008; |
|
1
|
|
|
|
|
2
|
|
2
|
1
|
|
|
1
|
|
4
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
20
|
|
3
|
1
|
|
|
1
|
|
3
|
use warnings; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
51
|
|
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
package Dist::Zilla::Plugin::SynopsisTests; |
6
|
|
|
|
|
|
|
# ABSTRACT: Release tests for synopses |
7
|
|
|
|
|
|
|
our $VERSION = '2.000007'; # VERSION |
8
|
1
|
|
|
1
|
|
3
|
use Moose; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
7
|
|
9
|
|
|
|
|
|
|
extends 'Dist::Zilla::Plugin::Test::Synopsis'; |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
before register_component => sub { |
13
|
|
|
|
|
|
|
warn '!!! [SynopsisTests] is deprecated and will be removed in a future release; replace it with [Test::Synopsis]'; |
14
|
|
|
|
|
|
|
}; |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
__PACKAGE__->meta->make_immutable; |
17
|
1
|
|
|
1
|
|
4407
|
no Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
4
|
|
18
|
|
|
|
|
|
|
1; |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
__END__ |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=pod |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=encoding UTF-8 |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head1 NAME |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
Dist::Zilla::Plugin::SynopsisTests - Release tests for synopses |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head1 VERSION |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
version 2.000007 |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=for test_synopsis BEGIN { die "SKIP: synopsis isn't perl code" } |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head1 SYNOPSIS |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
In C<dist.ini>: |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
[Test::Synopsis] |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head1 AVAILABILITY |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
The project homepage is L<http://metacpan.org/release/Dist-Zilla-Plugin-Test-Synopsis/>. |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
The latest version of this module is available from the Comprehensive Perl |
47
|
|
|
|
|
|
|
Archive Network (CPAN). Visit L<http://www.perl.com/CPAN/> to find a CPAN |
48
|
|
|
|
|
|
|
site near you, or see L<https://metacpan.org/module/Dist::Zilla::Plugin::Test::Synopsis/>. |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=head1 SOURCE |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
The development version is on github at L<http://github.com/doherty/Dist-Zilla-Plugin-Test-Synopsis> |
53
|
|
|
|
|
|
|
and may be cloned from L<git://github.com/doherty/Dist-Zilla-Plugin-Test-Synopsis.git> |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=head1 BUGS AND LIMITATIONS |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
You can make new bug reports, and view existing ones, through the |
58
|
|
|
|
|
|
|
web interface at L<https://github.com/doherty/Dist-Zilla-Plugin-Test-Synopsis/issues>. |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
=head1 AUTHORS |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
=over 4 |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
=item * |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
Marcel Grünauer <marcel@cpan.org> |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
=item * |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
Mike Doherty <doherty@cpan.org> |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
=item * |
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
Olivier Mengué <dolmen@cpan.org> |
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
=back |
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
This software is copyright (c) 2010 by Mike Doherty. |
81
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
83
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
84
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
=cut |