File Coverage

blib/lib/DBIx/QuickORM/Schema/View.pm
Criterion Covered Total %
statement 18 19 94.7
branch n/a
condition n/a
subroutine 6 7 85.7
pod 0 1 0.0
total 24 27 88.8


line stmt bran cond sub pod time code
1             package DBIx::QuickORM::Schema::View;
2 24     24   168 use strict;
  24         65  
  24         1007  
3 24     24   128 use warnings;
  24         54  
  24         2123  
4              
5             our $VERSION = '0.000019';
6              
7 24     24   165 use Carp qw/croak/;
  24         55  
  24         1616  
8 24     24   166 use Scalar::Util qw/blessed/;
  24         52  
  24         1356  
9              
10 24     24   234 use parent 'DBIx::QuickORM::Schema::Table';
  24         52  
  24         315  
11 24     24   2358 use DBIx::QuickORM::Util::HashBase;
  24         68  
  24         214  
12              
13 0     0 0   sub is_view { 1 }
14              
15             1;