1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-20 07:42:09 +02:00

[ticket/10907] Mark (var)binary tests as incomplete on non-MySQL DBMSes.

PHPBB3-10907
This commit is contained in:
Andreas Fischer 2012-05-22 18:41:15 +02:00
parent 5d5049710c
commit bad91d8e74

View File

@ -165,6 +165,11 @@ class phpbb_dbal_db_tools_test extends phpbb_database_test_case
*/
public function test_created_column($column_name, $column_value)
{
if ($column_name === 'c_varbinary' && stripos(get_class($this->db), 'mysql') === false)
{
$this->markTestIncomplete('Binary handling is not implemented properly on non-MySQL DBMSes.');
}
$row_insert = self::get_default_values();
$row_insert[$column_name] = $column_value;