moved shit to trunk
[catagits/Reaction.git] / lib / ComponentUI / TestModel.pm
1 package ComponentUI::TestModel;
2
3 use lib 't/lib';
4 use Reaction::InterfaceModel::DBIC::SchemaClass;
5
6 class 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
19 1;