-
Notifications
You must be signed in to change notification settings - Fork 172
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
196 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
...tastore_mysql_import/tests/src/Functional/Controller/MySqlQueryDownloadControllerTest.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?php | ||
|
||
namespace Drupal\Tests\datastore_mysql_import\Functional\Controller; | ||
|
||
use Drupal\Tests\datastore\Functional\Controller\QueryDownloadControllerTest; | ||
|
||
/** | ||
* Test streaming CSV downloads with data dictionaries. | ||
* | ||
* This is the same test as | ||
* \Drupal\Tests\datastore\Functional\Controller\QueryDownloadControllerTest, | ||
* but using the mysql importer. | ||
* | ||
* @group dkan | ||
* @group datastore_mysql_import | ||
* @group functional | ||
* @group btb | ||
* | ||
* @see \Drupal\Tests\datastore\Functional\Controller\QueryDownloadControllerTest | ||
*/ | ||
class MySqlQueryDownloadControllerTest extends QueryDownloadControllerTest { | ||
|
||
protected static $modules = [ | ||
'datastore_mysql_import', | ||
]; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters