Fixed misnamed tests
This commit is contained in:
parent
c6e2831793
commit
f335fa744d
@ -19,7 +19,7 @@
|
||||
*/
|
||||
class firebird extends DB_PDO {
|
||||
|
||||
protected $conn, $statement, $trans, $count;
|
||||
protected $conn, $statement, $trans, $count, $result;
|
||||
private $esc_char = "''";
|
||||
|
||||
/**
|
||||
@ -90,13 +90,6 @@ class firebird extends DB_PDO {
|
||||
return ibase_fetch_row($this->statement, IBASE_FETCH_BLOBS);
|
||||
break;
|
||||
|
||||
case PDO::FETCH_BOTH:
|
||||
return array_merge(
|
||||
ibase_fetch_row($this->statement, IBASE_FETCH_BLOBS),
|
||||
ibase_fetch_assoc($this->statement, IBASE_FETCH_BLOBS)
|
||||
);
|
||||
break;
|
||||
|
||||
default:
|
||||
return ibase_fetch_assoc($this->statement, IBASE_FETCH_BLOBS);
|
||||
break;
|
||||
@ -118,6 +111,8 @@ class firebird extends DB_PDO {
|
||||
$all[] = $row;
|
||||
}
|
||||
|
||||
$this->result = $all;
|
||||
|
||||
return $all;
|
||||
}
|
||||
|
||||
|
@ -69,13 +69,13 @@ class FirebirdTest extends UnitTestCase {
|
||||
$this->assertTrue($only_system);
|
||||
}
|
||||
|
||||
function TestCreateDatabase()
|
||||
function TestCreateTable()
|
||||
{
|
||||
//Attempt to create the table
|
||||
$sql = $this->db->manip->create_table('create_test', array('id' => 'SMALLINT'));
|
||||
$this->db->query($sql);
|
||||
|
||||
//This test fails for an unknown reason, when clearly the database exists
|
||||
//This test fails for an unknown reason, when clearly the table exists
|
||||
//Reset
|
||||
/*$this->tearDown();
|
||||
$this->setUp();
|
||||
@ -88,7 +88,7 @@ class FirebirdTest extends UnitTestCase {
|
||||
$this->assertTrue($table_exists);*/
|
||||
}
|
||||
|
||||
function TestDeleteDatabase()
|
||||
function TestDeleteTable()
|
||||
{
|
||||
//Attempt to delete the table
|
||||
$sql = $this->db->manip->delete_table('create_test');
|
||||
|
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user