summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rwxr-xr-xtests/it_dbi.t10
1 files changed, 9 insertions, 1 deletions
diff --git a/tests/it_dbi.t b/tests/it_dbi.t
index c885930..4a58188 100755
--- a/tests/it_dbi.t
+++ b/tests/it_dbi.t
@@ -227,14 +227,22 @@ $dbi->query('create temporary table it_dbi_testlocalized (
$record = new it_dbi($db + array('table' => "it_dbi_testlocalized"));
$record->insert(array('foobar_de' => "deutsch", 'foobar_fr' => "franz"));
+$record->insert(array('foobar_de' => "deutsch2", 'foobar_fr' => "franz2"));
T_set_language('de');
-$record->read(1);
+$record->select(array());
+$record->iterate();
is(
array($record->_key, $record->foobar),
array(1, "deutsch"),
"localized field foobar_de"
);
+$record->iterate();
+is(
+ array($record->_key, $record->foobar),
+ array(2, "deutsch2"),
+ "localized field foobar_de iterate"
+);
T_set_language('fr');
$record->read(1);