You are here

protected function TestviewConfiguration::modifyConfiguration in Configuration Management 7.2

Perform changes in the configuration and save those changes into the active store.

Overrides ConfigurationHandlerBaseTestCase::modifyConfiguration

File

tests/handlers/TestViewConfiguration.test, line 107
Tests for Configuration Management: Views.

Class

TestviewConfiguration
@file Tests for Configuration Management: Views.

Code

protected function modifyConfiguration() {

  // @TODO Fix this
  $view = views_get_view('test');
  $view->display['default']->display_options['pager']['options']['items_per_page'] = 5;
  views_save_view($view);
}