File
- drupal/core/modules/views/lib/Drupal/views/Tests/UI/DisplayPath.php, line 32
- Contains \Drupal\views\Tests\UI\DisplayPath
Class
- DisplayPath
- Tests the UI of generic display path plugin.
Namespace
Drupal\views\Tests\UI
Code
public function testPathUI() {
$this
->drupalGet('admin/structure/views/view/test_view');
$this
->drupalPost(NULL, array(), 'Add Page');
$this
->assertText(t('No path is set'), 'The right text appears if no path was set.');
$random_path = $this
->randomName();
$this
->drupalPost("admin/structure/views/nojs/display/test_view/page_1/path", array(
'path' => $random_path,
), t('Apply'));
$this
->assertText('/' . $random_path, 'The custom path appears in the summary.');
}