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

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

use Reaction::Class;

use namespace::clean -except => [ qw(meta) ];
extends DBIC;



__PACKAGE__->meta->make_immutable;


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

1;