File Coverage

lib/Git/Wrapper/Plus/Support/Behaviors.pm
Criterion Covered Total %
statement 23 23 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod 0 1 0.0
total 30 31 96.7


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