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 1     1   1514 use strict;
  1         2  
  1         28  
3 1     1   5 use warnings;
  1         1  
  1         20  
4 1     1   9 use base qw/DBIx::Class::Core/;
  1         1  
  1         339  
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;