Skip to content

Commit dfd61f1

Browse files
committed
travis bump
1 parent aa8b9da commit dfd61f1

6 files changed

+23
-3
lines changed

tests/Drivers/Native/InterbaseDriverTest.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ class InterbaseDriverTest extends DriverTestAbstract{
2727
protected $SQL_RAW_INSERT = 'INSERT INTO "test" ("id", "hash") VALUES (%1$d, \'%2$s\')';
2828
protected $SQL_PREPARED_INSERT = 'INSERT INTO "test" ("id", "hash") VALUES (?, ?)';
2929

30+
public function setUp(){
31+
$this->markTestSkipped('use the vagrant box...');
32+
}
33+
3034
public function testTruncate(){
3135
$this->markTestSkipped('Dynamic SQL Error SQL error code = -204 Table unknown test At line 1, column 10');
3236
}

tests/Drivers/Native/MSSqlSrvDriverTest.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,8 @@ class MSSqlSrvDriverTest extends DriverTestAbstract{
2424
protected $SQL_RAW_CREATE = 'CREATE TABLE test (id INT NOT NULL, hash VARCHAR(32) NOT NULL)';
2525
protected $SQL_RAW_TRUNCATE = 'TRUNCATE TABLE test';
2626

27+
public function setUp(){
28+
$this->markTestSkipped('use the vagrant box...');
29+
}
30+
2731
}

tests/Drivers/PDO/PDOFirebirdDriverTest.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,8 @@ class PDOFirebirdDriverTest extends PDOTestAbstract{
2626
protected $SQL_RAW_INSERT = 'INSERT INTO "test" ("id", "hash") VALUES (%1$d, \'%2$s\')';
2727
protected $SQL_PREPARED_INSERT = 'INSERT INTO "test" ("id", "hash") VALUES (?, ?)';
2828

29+
public function setUp(){
30+
$this->markTestSkipped('use the vagrant box...');
31+
}
32+
2933
}

tests/Drivers/PDO/PDOMSSqlSrvDriverTest.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,8 @@ class PDOMSSqlSrvDriverTest extends PDOTestAbstract{
2222
protected $SQL_RAW_CREATE = 'CREATE TABLE test (id INT NOT NULL, hash VARCHAR(32) NOT NULL)';
2323
protected $SQL_RAW_TRUNCATE = 'TRUNCATE TABLE test';
2424

25+
public function setUp(){
26+
$this->markTestSkipped('use the vagrant box...');
27+
}
28+
2529
}

tests/Query/Firebird/FirebirdQueryTestAbstract.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ abstract class FirebirdQueryTestAbstract extends QueryTestAbstract{
2020
protected $querydriver = FirebirdQueryBuilder::class;
2121
protected $envVar = 'DB_FIREBIRD_';
2222

23-
# public function setUp(){
24-
# $this->markTestSkipped('use the vagrant box...');
25-
# }
23+
public function setUp(){
24+
$this->markTestSkipped('use the vagrant box...');
25+
}
2626

2727
public function testCreateDatabase(){
2828
$this->assertSame(

tests/Query/MSSqlSrv/MSSqlSrvQueryTestAbstract.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ abstract class MSSqlSrvQueryTestAbstract extends QueryTestAbstract{
2020
protected $querydriver = MSSqlSrvQueryBuilder::class;
2121
protected $envVar = 'DB_MSSQL_';
2222

23+
public function setUp(){
24+
$this->markTestSkipped('use the vagrant box...');
25+
}
26+
2327
public function testCreateDatabase(){
2428
$this->assertSame(
2529
'CREATE DATABASE [vagrant] COLLATE utf8',

0 commit comments

Comments
 (0)