public function IdMapTableNoDummyTest::testNoDummyTables in Drupal 8
Same name and namespace in other branches
- 9 core/modules/migrate_drupal/tests/src/Kernel/IdMapTableNoDummyTest.php \Drupal\Tests\migrate_drupal\Kernel\IdMapTableNoDummyTest::testNoDummyTables()
Test that dummy map tables do not exist.
File
- core/
modules/ migrate_drupal/ tests/ src/ Kernel/ IdMapTableNoDummyTest.php, line 33
Class
- IdMapTableNoDummyTest
- Test that no dummy migrate_map tables are created.
Namespace
Drupal\Tests\migrate_drupal\KernelCode
public function testNoDummyTables() {
$database = \Drupal::database();
$tables = $database
->schema()
->findTables('%migrate_map%');
$dummy_tables = preg_grep("/.*migrate_map_([0-9a-fA-F]){13}/", $tables);
$this
->assertCount(0, $dummy_tables);
}