1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-05 13:12:56 +02:00

escape test.

This commit is contained in:
Cameron 2019-02-13 11:48:56 -08:00
parent c4d47c4e03
commit f1551a4613

View File

@ -738,17 +738,19 @@
$result = $this->db->field('plugin', 'plugin_path');
$this->assertTrue($result);
}
/*
public function testEscape()
{
$result = $this->db->escape(123);
$this->assertEquals(123,$result);
$result = $this->db->escape("Can't", true);
$this->assertEquals("Can't", $result);
}
public function testDb_Table_exists()
{
}
*/
public function testDb_Table_exists()
{
$result = $this->db->db_Table_exists('plugin');