You are here

function ViewsHandlersTest::testFilterInOperatorUi in Views (for Drupal 7) 7.3

File

tests/views_handlers.test, line 20
Definition of ViewsHandlersTest.

Class

ViewsHandlersTest
Tests abstract handlers of views.

Code

function testFilterInOperatorUi() {
  $admin_user = $this
    ->drupalCreateUser(array(
    'administer views',
    'administer site configuration',
  ));
  $this
    ->drupalLogin($admin_user);
  menu_rebuild();
  $path = 'admin/structure/views/nojs/config-item/test_filter_in_operator_ui/default/filter/type';
  $this
    ->drupalGet($path);
  $this
    ->assertFieldByName('options[expose][reduce]', FALSE);
  $edit = array(
    'options[expose][reduce]' => TRUE,
  );
  $this
    ->drupalPost($path, $edit, t('Apply'));
  $this
    ->drupalGet($path);
  $this
    ->assertFieldByName('options[expose][reduce]', TRUE);
}