repo.or.cz
/
blog.pm-common-perl-mods.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
skip tests unless DBD::SQLite installed
[blog.pm-common-perl-mods.git]
/
Rose-DBx-Object-I18N
/
t
/
available-translations-before-load-i18n.t
blob
787ce912c9cb06d76c6c0531aea171d1fcadbad6
1
#!/usr/bin/perl
2
3
use
strict
;
4
use
warnings
;
5
6
use
Test
::
More
;
7
8
eval
"use DBD::SQLite"
;
9
plan skip_all
=>
"DBD::SQLite is required to run this test"
if
$
@
;
10
11
plan
'tests'
=>
1
;
12
13
use
lib
't/lib'
;
14
15
use
NewDB
;
16
use
User
;
17
use
User
::
Manager
;
18
19
my
$db
=
NewDB
->
new
();
20
21
$db
->
init
();
22
23
my
$u
=
User
->
new
(
24
name
=>
'ipoi'
,
25
orig_lang
=>
'ru'
,
26
signature
=>
'hello'
27
);
28
$u
->
save
();
29
30
$u
=
User
->
new
(
id
=>
$u
->
id
);
31
$u
->
load
();
32
33
eval
{
$u
->
i18n_available_translations
() };
34
ok
( $
@
);
35
36
$u
->
delete
(
cascade
=>
1
);
37
38
1
;