You are here

public function ConfigurationCtoolsWebTestCase::trackViewsConfigurations in Configuration Management 7

Tests tracking configurations for the views module.

2 calls to ConfigurationCtoolsWebTestCase::trackViewsConfigurations()
ConfigurationCtoolsWebTestCase::testViewsImportDatastoreToActivestore in tests/configuration.ctools.test
Tests that configurations that are marked as overriden are reverted properly.
ConfigurationCtoolsWebTestCase::testViewsOverridden in tests/configuration.ctools.test
Tests that views configurations that are marked as overriden are reverted properly.

File

tests/configuration.ctools.test, line 49
Test cases for contrib modules supported by configuration.

Class

ConfigurationCtoolsWebTestCase
Configuration test case for ctools.

Code

public function trackViewsConfigurations() {

  // Track default views.
  $components = array(
    'views_view' => array(
      'archive',
      'backlinks',
      'frontpage',
      'glossary',
      'comments_recent',
      'taxonomy_term',
      'tracker',
    ),
  );
  $files = array();
  foreach ($components as $name => $value) {
    $files[] = 'configuration.' . $name . '.inc';
  }
  $this
    ->trackConfigurations($components, $files);
}