Issue #2318779 by Devin Carlson: [Meta] Aggregator Module: Fix documentation that refers to enabling/disabling of modules

8.0.x
Alex Pott 2014-11-20 09:31:28 +00:00
parent 290712e156
commit a69bc3eb89
8 changed files with 8 additions and 8 deletions

View File

@ -52,7 +52,7 @@ class AggregatorConfigurationTest extends AggregatorTestBase {
$this->assertText(t('The configuration options have been saved.'));
$this->assertFieldByName('dummy_length', 100, '"dummy_length" has correct default value.');
// Make sure settings form is still accessible even after disabling a module
// Make sure settings form is still accessible even after uninstalling a module
// that provides the selected plugins.
$this->container->get('module_handler')->uninstall(array('aggregator_test'));
$this->resetAll();

View File

@ -17,7 +17,7 @@ use Drupal\Component\Utility\String;
class AggregatorRenderingTest extends AggregatorTestBase {
/**
* Modules to enable.
* Modules to install.
*
* @var array
*/

View File

@ -17,7 +17,7 @@ use Drupal\aggregator\FeedInterface;
abstract class AggregatorTestBase extends WebTestBase {
/**
* Modules to enable.
* Modules to install.
*
* @var array
*/

View File

@ -15,7 +15,7 @@ namespace Drupal\aggregator\Tests;
class DeleteFeedTest extends AggregatorTestBase {
/**
* Modules to enable.
* Modules to install.
*
* @var array
*/

View File

@ -17,7 +17,7 @@ use Drupal\language\Entity\ConfigurableLanguage;
class FeedLanguageTest extends AggregatorTestBase {
/**
* Modules to enable.
* Modules to install.
*
* @var array
*/

View File

@ -15,7 +15,7 @@ namespace Drupal\aggregator\Tests;
class ImportOpmlTest extends AggregatorTestBase {
/**
* Modules to enable.
* Modules to install.
*
* @var array
*/

View File

@ -64,7 +64,7 @@ class UpdateFeedItemTest extends AggregatorTestBase {
$after = db_query('SELECT timestamp FROM {aggregator_item} WHERE fid = :fid', array(':fid' => $feed->id()))->fetchField();
$this->assertTrue($before === $after, format_string('Publish timestamp of feed item was not updated (!before === !after)', array('!before' => $before, '!after' => $after)));
// Make sure updating items works even after disabling a module
// Make sure updating items works even after uninstalling a module
// that provides the selected plugins.
$this->enableTestPlugins();
$this->container->get('module_handler')->uninstall(array('aggregator_test'));

View File

@ -20,7 +20,7 @@ use Drupal\views\Tests\ViewUnitTestBase;
class IntegrationTest extends ViewUnitTestBase {
/**
* Modules to enable.
* Modules to install.
*
* @var array
*/