Test::DBIx::Class::Example::Schema - A basic schema you can use for testing


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

Index


Code Index:

NAME

Top

Test::DBIx::Class::Example::Schema - A basic schema you can use for testing

SYNOPSIS

	my $schema = Test::DBIx::Class::Example::Schema->connect($dsn);

DESCRIPTION

Top

This Schema has two purposes. First, we need one in order to properly test this distribution. Secondly, we'd like to offer a useful and simple schema that component authors can use to test their code. This way you don't have to keep rolling your own example database and we can concentrate effort on making one that is solid.

SEE ALSO

Top

The following modules or resources may be of interest.

DBIx::Class::Schema

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::Example::Schema;
use base 'DBIx::Class::Schema';
__PACKAGE__->load_namespaces(default_resultset_class => 'DefaultRS');

1;