File Coverage

blib/lib/Dist/Zilla/Role/Stash/Login.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 Dist::Zilla::Role::Stash::Login 6.037;
2             # ABSTRACT: a stash with username/password credentials
3              
4 3     3   2213 use Moose::Role;
  3         6  
  3         45  
5             with 'Dist::Zilla::Role::Stash';
6              
7 3     3   9548 use Dist::Zilla::Pragmas;
  3         6  
  3         18  
8              
9 3     3   14 use namespace::autoclean;
  3         5  
  3         20  
10              
11             #pod =head1 OVERVIEW
12             #pod
13             #pod A Login stash must provide a C<username> and C<password> method.
14             #pod
15             #pod =cut
16              
17             requires 'username';
18             requires 'password';
19              
20             1;
21              
22             __END__
23              
24             =pod
25              
26             =encoding UTF-8
27              
28             =head1 NAME
29              
30             Dist::Zilla::Role::Stash::Login - a stash with username/password credentials
31              
32             =head1 VERSION
33              
34             version 6.037
35              
36             =head1 OVERVIEW
37              
38             A Login stash must provide a C<username> and C<password> method.
39              
40             =head1 PERL VERSION
41              
42             This module should work on any version of perl still receiving updates from
43             the Perl 5 Porters. This means it should work on any version of perl
44             released in the last two to three years. (That is, if the most recently
45             released version is v5.40, then this module should work on both v5.40 and
46             v5.38.)
47              
48             Although it may work on older versions of perl, no guarantee is made that the
49             minimum required version will not be increased. The version may be increased
50             for any reason, and there is no promise that patches will be accepted to
51             lower the minimum required perl.
52              
53             =head1 AUTHOR
54              
55             Ricardo SIGNES 😏 <cpan@semiotic.systems>
56              
57             =head1 COPYRIGHT AND LICENSE
58              
59             This software is copyright (c) 2026 by Ricardo SIGNES.
60              
61             This is free software; you can redistribute it and/or modify it under
62             the same terms as the Perl 5 programming language system itself.
63              
64             =cut