~ubuntu-branches/ubuntu/raring/libhtml-formhandler-model-dbic-perl/raring

« back to all changes in this revision

Viewing changes to t/lib/BookDB/Model/DB.pm

  • Committer: Package Import Robot
  • Author(s): Dominique Dumont
  • Date: 2012-10-17 13:41:10 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20121017134110-r7qpiotadfu3v1b0
Tags: 0.23-1
* new upstream release
* control: bumped Depends libhtml-formhandler-perl to >= 0.40016
  as done by upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
package BookDB::Model::DB;
2
 
 
3
 
use strict;
4
 
use base 'Catalyst::Model::DBIC::Schema';
5
 
 
6
 
__PACKAGE__->config(
7
 
    schema_class => 'BookDB::Schema',
8
 
    connect_info => [
9
 
        'dbi:SQLite:t/db/book.db',
10
 
 
11
 
    ],
12
 
);
13
 
 
14
 
=head1 NAME
15
 
 
16
 
BookDB::Model::DB - Catalyst DBIC Schema Model
17
 
=head1 SYNOPSIS
18
 
 
19
 
See L<BookDB>
20
 
 
21
 
=head1 DESCRIPTION
22
 
 
23
 
L<Catalyst::Model::DBIC::Schema> Model using schema L<BookDB::Schema::DB>
24
 
 
25
 
=head1 AUTHOR
26
 
 
27
 
Gerda Shank
28
 
 
29
 
=head1 LICENSE
30
 
 
31
 
This library is free software, you can redistribute it and/or modify
32
 
it under the same terms as Perl itself.
33
 
 
34
 
=cut
35
 
 
36
 
1;