skip tests unless DBD::SQLite installed
[blog.pm-common-perl-mods.git] / Rose-DBx-Object-I18N / t / load-i18n-with-default-language.t
blobdd880a9257a72fbfa8a9378f535bccd150fc206b
1 #!/usr/bin/perl
3 use strict;
4 use warnings;
6 use Test::More;
8 eval "use DBD::SQLite";
9 plan skip_all => "DBD::SQLite is required to run this test" if $@;
11 plan 'tests' => 2;
13 use lib 't/lib';
15 use NewDB;
16 use User;
17 use User::Manager;
19 my $db = NewDB->new();
21 $db->init();
23 my $u = User->new(
24 name => 'uuu',
25 orig_lang => 'en',
26 signature => 'hello'
28 $u->save();
30 $ENV{ LANG } = undef;
32 $u = User->new( id => $u->id );
33 $u->load();
34 is( $u->i18n->lang, 'en' );
36 is( $u->i18n->signature, 'hello' );
38 $u->delete( cascade => 1 );