moved shit to trunk
[catagits/Reaction.git] / lib / ComponentUI / TestModel.pm
CommitLineData
7adfd53f 1package ComponentUI::TestModel;
2
3use lib 't/lib';
4use Reaction::InterfaceModel::DBIC::SchemaClass;
5
6class TestModel, which {
7
8 domain_model '_testdb_schema' =>
9 (
10 isa => 'RTest::TestDB',
11 reflect => [
12 'Foo',
13 ['Bar' => 'ComponentUI::TestModel::Bars'],
14 ['Baz' => 'ComponentUI::TestModel::Baz', 'bazes' ],
15 ],
16 );
17};
18
191;