File Coverage

blib/lib/Selenium/Remote/Driver/Firefox/Profile.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 14 14 100.0


line stmt bran cond sub pod time code
1             package Selenium::Remote::Driver::Firefox::Profile;
2             $Selenium::Remote::Driver::Firefox::Profile::VERSION = '1.50';
3             # ABSTRACT: Use custom profiles with Selenium::Remote::Driver
4 2     2   312300 use strict;
  2         5  
  2         83  
5 2     2   10 use warnings;
  2         5  
  2         114  
6              
7 2     2   1005 use Selenium::Firefox::Profile;
  2         6  
  2         80  
8              
9             BEGIN {
10 2     2   48 push our @ISA, 'Selenium::Firefox::Profile';
11             }
12              
13              
14             1;
15              
16             __END__