aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ComponentUI/Model/TestModel.pm
blob: deef6d082766c3fbd276857dc4bebcf745f25d34 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package ComponentUI::Model::TestModel;

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

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

1;