From c8df79ea019d34bf4d09570f2b624da0fb6e8475 Mon Sep 17 00:00:00 2001 From: Cameron Date: Sun, 10 Feb 2019 19:19:38 -0800 Subject: [PATCH] More tests --- tests/unit/e_db_pdoTest.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tests/unit/e_db_pdoTest.php b/tests/unit/e_db_pdoTest.php index 6f15a74e5..5a2d4d7db 100644 --- a/tests/unit/e_db_pdoTest.php +++ b/tests/unit/e_db_pdoTest.php @@ -689,13 +689,17 @@ { $result = $this->db->db_Field('plugin', 'plugin_path'); $this->assertTrue($result); + + $result = $this->db->db_Field('plugin', 2); + $this->assertEquals('plugin_version', $result); + } /* public function testColumnCount() { + $this->db->columnCount(); + }*/ - } -*/ public function testField() { $result = $this->db->field('plugin', 'plugin_path');