aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ComponentUI/Model/TestModel.pm
blob: 3d633f32a2e9254b3019fce16cd9be93c0f3cd1a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package ComponentUI::Model::TestModel;

use lib 't/lib';
use aliased 'Catalyst::Model::Reaction::InterfaceModel::DBIC';

use Reaction::Class;

class TestModel is DBIC, which {

};

__PACKAGE__->config
  (
   im_class => 'ComponentUI::TestModel',
   db_dsn   => 'dbi:SQLite:t/var/reaction_test_withdb.db',
  );

1;