new config option to DBICTest to let you set an alternative storage type, start on...
[dbsrgits/DBIx-Class.git] / t / 63register_class.t
CommitLineData
b9537280 1use strict;
2use warnings;
3
4use Test::More tests => 2;
5use lib qw(t/lib);
6use DBICTest;
7use DBICTest::Schema;
8use DBICTest::Schema::Artist;
9
10DBICTest::Schema::Artist->source_name('MyArtist');
11DBICTest::Schema->register_class('FooA', 'DBICTest::Schema::Artist');
12
13my $schema = DBICTest->init_schema();
14
15my $a = $schema->resultset('FooA')->search;
16is($a->count, 3, 'have 3 artists');
17is($schema->class('FooA'), 'DBICTest::FooA', 'Correct artist class');