From ed2ae9d2124d262d7897701ba97d4e670e150d76 Mon Sep 17 00:00:00 2001
From: Christian Schneider
Date: Mon, 30 Jan 2023 11:15:11 +0100
Subject: Make it_dbi base object iterable, simplify code, add tests

---
 test/it_dbi.t | 8 ++++++++
 1 file changed, 8 insertions(+)

(limited to 'test')

diff --git a/test/it_dbi.t b/test/it_dbi.t
index eef2632..2a601b6 100755
--- a/test/it_dbi.t
+++ b/test/it_dbi.t
@@ -269,6 +269,14 @@ foreach (new it_dbi_test as $id => $record)
 }
 is($count, 3, "Iterator without select");
 
+$count = 0;
+foreach (new it_dbi($db + ['table' => 'it_dbi_test']) as $id => $record)
+{
+	$count++;
+	is($record->_key, $id, "Iterator id $id (it_dbi object)");
+}
+is($count, 3, "Iterator without select (it_dbi_object)");
+
 $count = 0;
 foreach (new it_dbi_test(['foo <>' => ""]) as $id => $record)
 {
-- 
cgit v1.2.3