File Coverage

blib/lib/Articulate/Storage/DBIC/Simple/Schema/Result/Articulate/Item.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Articulate::Storage::DBIC::Simple::Schema::Result::Articulate::Item;
2 2     2   8440 use strict;
  2         4  
  2         61  
3 2     2   7 use warnings;
  2         3  
  2         43  
4 2     2   8 use base qw/DBIx::Class::Core/;
  2         4  
  2         881  
5              
6             __PACKAGE__->table('item');
7             __PACKAGE__->add_columns(
8             meta => { type => 'string' },
9             content => { type => 'string' },
10             location => { type => 'string' },
11             );
12              
13             1;