summaryrefslogtreecommitdiffstatshomepage
path: root/modules/simpletest/tests/upgrade/upgrade_filled.test
diff options
context:
space:
mode:
Diffstat (limited to 'modules/simpletest/tests/upgrade/upgrade_filled.test')
-rw-r--r--modules/simpletest/tests/upgrade/upgrade_filled.test31
1 files changed, 0 insertions, 31 deletions
diff --git a/modules/simpletest/tests/upgrade/upgrade_filled.test b/modules/simpletest/tests/upgrade/upgrade_filled.test
deleted file mode 100644
index 9b17bda4caa..00000000000
--- a/modules/simpletest/tests/upgrade/upgrade_filled.test
+++ /dev/null
@@ -1,31 +0,0 @@
-<?php
-
-/**
- * Upgrade test for the filled database..
- *
- * Load a filled installation of Drupal 7 and run the upgrade process on it.
- */
-class FilledUpgradePathTestCase extends UpgradePathTestCase {
- public static function getInfo() {
- return array(
- 'name' => 'Filled upgrade test',
- 'description' => 'Filled upgrade test.',
- 'group' => 'Upgrade path',
- );
- }
-
- public function setUp() {
- // Path to the database dump.
- $this->databaseDumpFiles = array(
- drupal_get_path('module', 'simpletest') . '/tests/upgrade/drupal-7.filled.database.php.gz',
- );
- parent::setUp();
- }
-
- /**
- * Test a successful upgrade.
- */
- public function testFilledUpgrade() {
- $this->assertTrue($this->performUpgrade(), t('The upgrade was completed successfully.'));
- }
-}