File: FixtureCommand.pm

package info (click to toggle)
libtest-dbix-class-perl 0.52-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 3,088 kB
  • sloc: perl: 2,193; makefile: 2
file content (35 lines) | stat: -rwxr-xr-x 657 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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__

=head1 NAME

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

=head1 DESCRIPTION

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

=head1 AUTHOR

John Napiorkowski C<< <jjnapiork@cpan.org> >>

=head1 COPYRIGHT & LICENSE

Copyright 2009, John Napiorkowski C<< <jjnapiork@cpan.org> >>

This program is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.

=cut