Test::DBIx::Class::Role::FixtureCommand - Role that a FixtureCommand must consume


Test-DBIx-Class documentation Contained in the Test-DBIx-Class distribution.

Index


Code Index:

NAME

Top

Test::DBIx::Class::Role::FixtureCommand - Role that a FixtureCommand must consume

DESCRIPTION

Top

If you need to make your own custom Fixture Commands, please consume this role.

AUTHOR

Top

John Napiorkowski <jjnapiork@cpan.org>

COPYRIGHT & LICENSE

Top


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__