File Coverage

blib/lib/App/SCM/Digest/SCM.pm
Criterion Covered Total %
statement 16 16 100.0
branch n/a
condition n/a
subroutine 12 12 100.0
pod 10 10 100.0
total 38 38 100.0


line stmt bran cond sub pod time code
1             package App::SCM::Digest::SCM;
2              
3 1     1   23382 use strict;
  1         2  
  1         27  
4 1     1   5 use warnings;
  1         2  
  1         184  
5              
6             sub is_usable
7             {
8 1     1 1 862 die "Not implemented.";
9             }
10              
11             sub clone
12             {
13 1     1 1 537 die "Not implemented.";
14             }
15              
16             sub open_repository
17             {
18 1     1 1 1109 die "Not implemented.";
19             }
20              
21             sub pull
22             {
23 1     1 1 882 die "Not implemented.";
24             }
25              
26             sub branches
27             {
28 1     1 1 857 die "Not implemented.";
29             }
30              
31             sub branch
32             {
33 1     1 1 889 die "Not implemented.";
34             }
35              
36             sub checkout
37             {
38 1     1 1 862 die "Not implemented.";
39             }
40              
41             sub commits_from
42             {
43 1     1 1 880 die "Not implemented.";
44             }
45              
46             sub show
47             {
48 1     1 1 869 die "Not implemented.";
49             }
50              
51             sub show_all
52             {
53 1     1 1 862 die "Not implemented.";
54             }
55              
56             1;
57              
58             __END__