You are here

protected function BEF_TestBase::getBefSettingsUrl in Better Exposed Filters 7.3

Returns the URL for the BEF exposed form settings page.

8 calls to BEF_TestBase::getBefSettingsUrl()
BEF_TestBase::setBefSettings in tests/better_exposed_filters_TestBase.php
Sets various BEF exposed form settings. If $error is specified it also asserts that the error text apepars when trying to apply $settings.
BEF_TestDatepicker::test_befDatepicker in tests/better_exposed_filters.test
Verifies Datepicker options using Drupal core date fields.
BEF_TestDatepicker::test_befDatepickerCustom in tests/better_exposed_filters.test
Verifies Datepicker options using a custom (Date module) date field.
BEF_TestOptions::test_befOptionsExist in tests/better_exposed_filters.test
Verify BEF options display for binary and unlimited option fields
BEF_TestOptions::test_befOptionsSave in tests/better_exposed_filters.test
Verify BEF options are saved and redisplayed properly

... See full list

File

tests/better_exposed_filters_TestBase.php, line 84
Base class for testing the Better Exposed Filters module. @author mikeker

Class

BEF_TestBase
Helper functions for Better Exposed Filters tests.

Code

protected function getBefSettingsUrl() {
  return 'admin/structure/views/nojs/display/' . $this->view['machine_name'] . '/default/exposed_form_options';
}