File Coverage

blib/lib/WWW/Shopify/Field/Identifier.pm
Criterion Covered Total %
statement 15 20 75.0
branch n/a
condition n/a
subroutine 5 10 50.0
pod 0 3 0.0
total 20 33 60.6


line stmt bran cond sub pod time code
1             #!/usr/bin/perl
2              
3 1     1   3 use strict;
  1         1  
  1         23  
4 1     1   3 use warnings;
  1         1  
  1         17  
5              
6 1     1   3 use WWW::Shopify::Field;
  1         1  
  1         22  
7              
8             package WWW::Shopify::Field::Identifier;
9 1     1   2 use parent 'WWW::Shopify::Field';
  1         1  
  1         3  
10 0     0 0   sub sql_type { return "bigint"; }
11 0     0 0   sub data_type { return WWW::Shopify::Field->TYPE_QUANTITATIVE; }
12             sub generate($) {
13 0     0 0   return int(rand(100000000))+1;
14             }
15              
16             package WWW::Shopify::Field::Identifier::String;
17 1     1   84 use parent 'WWW::Shopify::Field';
  1         0  
  1         2  
18 0     0     sub sql_type { return "varchar(255)"; }
19 0     0     sub data_type { return WWW::Shopify::Field->TYPE_QUALITATIVE; }
20              
21             1;