RDBO Model for Form::Processor.
[blog.pm-common-perl-mods.git] / Common-Form-Processor-Model-RDBO / t / lib / DB.pm
blobab0f283c54e3ef1336287638fc0a3c299d39151a
1 package DB;
3 use strict;
4 use warnings;
6 use base qw(Rose::DB);
8 use FindBin;
10 __PACKAGE__->use_private_registry;
12 __PACKAGE__->register_db(
13 driver => 'sqlite',
14 database => "/tmp/form-processor-model-rdbo.db"
17 =head1 AUTHOR
19 vti
21 =head1 LICENSE
23 This library is free software, you can redistribute it and/or modify
24 it under the same terms as Perl itself.
26 =cut