File Coverage

blib/lib/Net/OAuth2/Scheme/Factory.pm
Criterion Covered Total %
statement 16 16 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 22 22 100.0


line stmt bran cond sub pod time code
1 2     2   6 use strict;
  2         3  
  2         49  
2 2     2   7 use warnings;
  2         2  
  2         65  
3              
4             package Net::OAuth2::Scheme::Factory;
5             BEGIN {
6 2     2   34 $Net::OAuth2::Scheme::Factory::VERSION = '0.020002_099';
7             }
8             # ABSTRACT: the default factory for token schemes
9              
10 2     2   325 use parent 'Net::OAuth2::Scheme::Option::Builder';
  2         195  
  2         10  
11              
12 2     2   70 use parent 'Net::OAuth2::Scheme::Mixin::Root';
  2         4  
  2         6  
13 2     2   70 use parent 'Net::OAuth2::Scheme::Mixin::Transport';
  2         3  
  2         6  
14             use parent 'Net::OAuth2::Scheme::Mixin::Format';
15             use parent 'Net::OAuth2::Scheme::Mixin::Accept';
16             use parent 'Net::OAuth2::Scheme::Mixin::VTable';
17             use parent 'Net::OAuth2::Scheme::Mixin::NextID';
18              
19             #... and done!
20              
21             # If you are trying to figure this out, start with Root
22              
23             1;
24              
25              
26             __END__