databaseDumpFiles = [ __DIR__ . '/../../../../../system/tests/fixtures/update/drupal-8.bare.standard.php.gz', __DIR__ . '/../../../fixtures/update/legacy-bulk-form-update.php' ]; } /** * Tests the updating of dependencies for Views using the bulk_form plugin. */ public function testBulkFormDependencies() { $module_dependencies = View::load('legacy_bulk_form')->getDependencies()['module']; $this->assertTrue(in_array('system', $module_dependencies)); $this->runUpdates(); $module_dependencies = View::load('legacy_bulk_form')->getDependencies()['module']; $this->assertFalse(in_array('system', $module_dependencies)); } }