| Test-DBIx-Class documentation | Contained in the Test-DBIx-Class distribution. |
Test::DBIx::Class::Role::FixtureCommand - Role that a FixtureCommand must consume
If you need to make your own custom Fixture Commands, please consume this role.
John Napiorkowski <jjnapiork@cpan.org>
Copyright 2009, John Napiorkowski <jjnapiork@cpan.org>
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Test-DBIx-Class documentation | Contained in the Test-DBIx-Class distribution. |
package Test::DBIx::Class::Role::FixtureCommand; { use Moose::Role; requires qw/install_fixtures/; has 'schema_manager' => ( is=>'ro', required=>1, weak_ref=>1, ); } 1; __END__