File Coverage

blib/lib/Mojo/Transaction/HTTP/Role/Retry.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Mojo::Transaction::HTTP::Role::Retry 0.003;
2              
3             # ABSTRACT: Adds a retries attribute
4              
5 6     6   6744 use Mojo::Base -role;
  6         13  
  6         58  
6              
7              
8             has retries => 0;
9              
10             1;
11              
12             __END__