File Coverage

blib/lib/Test/DBIx/Class/Role/FixtureCommand.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Test::DBIx::Class::Role::FixtureCommand; {
2              
3 14     14   6530 use Moose::Role;
  14         17  
  14         99  
4             requires qw/install_fixtures/;
5              
6             has 'schema_manager' => (
7             is=>'ro',
8             required=>1,
9             weak_ref=>1,
10             );
11              
12             } 1;
13              
14             __END__
15              
16             =head1 NAME
17              
18             Test::DBIx::Class::Role::FixtureCommand - Role that a FixtureCommand must consume
19              
20             =head1 DESCRIPTION
21              
22             If you need to make your own custom Fixture Commands, please consume this role.
23              
24             =head1 AUTHOR
25              
26             John Napiorkowski C<< <jjnapiork@cpan.org> >>
27              
28             =head1 COPYRIGHT & LICENSE
29              
30             Copyright 2009, John Napiorkowski C<< <jjnapiork@cpan.org> >>
31              
32             This program is free software; you can redistribute it and/or modify
33             it under the same terms as Perl itself.
34              
35             =cut