File Coverage

blib/lib/Git/Wrapper/Plus/Support/Behaviors.pm
Criterion Covered Total %
statement 19 19 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod 0 1 0.0
total 25 26 96.1


line stmt bran cond sub pod time code
1 4     4   683 use 5.006; # our
  4         16  
2 4     4   29 use strict;
  4         14  
  4         272  
3 4     4   25 use warnings;
  4         10  
  4         474  
4              
5             package Git::Wrapper::Plus::Support::Behaviors;
6              
7             our $VERSION = '0.004011';
8              
9             # ABSTRACT: Database of Git Behavior Support
10              
11             our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
12              
13 4     4   669 use Moo qw( extends );
  4         15460  
  4         68  
14             extends 'Git::Wrapper::Plus::Support::RangeDictionary';
15              
16              
17              
18              
19              
20              
21              
22              
23              
24              
25              
26              
27              
28              
29              
30              
31              
32              
33              
34              
35              
36              
37              
38             sub BUILD {
39 3     3 0 7589 my ($self) = @_;
40 3         56 $self->add_range(
41             'add-updates-index' => {
42             'min' => '1.5.0',
43             'min_tag' => '1.5.0-rc0',
44             'min_sha1' => '366bfcb68f4d98a43faaf17893a1aa0a7a9e2c58',
45             },
46             );
47 3         23 $self->add_range(
48             'can-checkout-detached' => {
49             'min' => '1.5.0',
50             'min_tag' => '1.5.0-rc1',
51             'min_sha1' => 'c847f537125ceab3425205721fdaaa834e6d8a83',
52             },
53             );
54 3         25 $self->add_range(
55             '2-arg-cat-file' => {
56             'min_sha1' => 'bf0c6e839c692142784caf07b523cd69442e57a5',
57             'min_tag' => '0.99',
58             'min' => '0.99',
59             },
60             );
61 3         78 return $self;
62             }
63              
64 4     4   3807 no Moo;
  4         11  
  4         31  
65             1;
66              
67             __END__