Skip to content

Commit

Permalink
Added missing pdo_mysql requires
Browse files Browse the repository at this point in the history
  • Loading branch information
GrahamCampbell committed Jul 17, 2020
1 parent f71be60 commit 56e58d2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/Integration/Auth/ApiAuthenticationWithEloquentTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
use Illuminate\Support\Str;
use Orchestra\Testbench\TestCase;

/**
* @requires extension pdo_mysql
*/
class ApiAuthenticationWithEloquentTest extends TestCase
{
protected function getEnvironmentSetUp($app)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

use PDO;

/**
* @requires extension pdo_mysql
*/
class DatabaseEmulatePreparesMySqlConnectionTest extends DatabaseMySqlConnectionTest
{
protected function getEnvironmentSetUp($app)
Expand Down
3 changes: 3 additions & 0 deletions tests/Integration/Database/DatabaseMySqlConnectionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
use Illuminate\Support\Facades\Schema;
use Orchestra\Testbench\TestCase;

/**
* @requires extension pdo_mysql
*/
class DatabaseMySqlConnectionTest extends TestCase
{
const TABLE = 'player';
Expand Down

0 comments on commit 56e58d2

Please sign in to comment.