skip tests unless DBD::SQLite installed
[blog.pm-common-perl-mods.git] / Common-Form-Processor-Model-RDBO / t / lib / DB / Object.pm
blob73d5dd1fe1dfa2d7f3c4c9f368de5eba0efff03f
1 package DB::Object;
3 use strict;
5 use base qw/ Rose::DB::Object /;
7 use DB;
9 sub init_db {
10 my $self = shift;
12 DB->new_or_cached( @_ );
15 =head1 AUTHOR
17 vti
19 =head1 LICENSE
21 This library is free software, you can redistribute it and/or modify
22 it under the same terms as Perl itself.
24 =cut