man DBIx::Class::Test::SQLite () - Base class for running Class::DBI tests against DBIx::Class compat layer, shamelessly ripped from Class::DBI::Test::SQLite
NAME
DBIx::Class::Test::SQLite - Base class for running Class::DBI tests against DBIx::Class compat layer, shamelessly ripped from Class::DBI::Test::SQLite
SYNOPSIS
use base 'DBIx::Class::Test::SQLite';
__PACKAGE__->set_table('test'); __PACKAGE__->columns(All => qw/id name film salary/);
sub create_sql { return q{ id INTEGER PRIMARY KEY, name CHAR(4), film VARCHAR(2), salary INT } }
DESCRIPTION
This provides a simple base class for DBIx::Class::CDBICompat tests using SQLite. Each class for the test should inherit from this, provide a create_sql() method which returns a string representing the SQL used to create the table for the class, and then call set_table() to create the table, and tie it to the class.
METHODS
set_table
__PACKAGE__->set_table('test');
This combines creating the table with the normal DBIx::Class table() call.