X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=web%2Fcore%2Fmodules%2Fnode%2Ftests%2Fsrc%2FFunctional%2FViews%2FPathPluginTest.php;fp=web%2Fcore%2Fmodules%2Fnode%2Ftests%2Fsrc%2FFunctional%2FViews%2FPathPluginTest.php;h=d8d088d978ac2f6dfcde682866cfca9259915bd0;hp=3cb4e372c9c053dd42dcb1d3556708004cf611e1;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hpb=680c79a86e3ed402f263faeac92e89fb6d9edcc0 diff --git a/web/core/modules/node/tests/src/Functional/Views/PathPluginTest.php b/web/core/modules/node/tests/src/Functional/Views/PathPluginTest.php index 3cb4e372c..d8d088d97 100644 --- a/web/core/modules/node/tests/src/Functional/Views/PathPluginTest.php +++ b/web/core/modules/node/tests/src/Functional/Views/PathPluginTest.php @@ -58,12 +58,18 @@ class PathPluginTest extends NodeTestBase { } /** - * Tests the node path plugin. + * Tests the node path plugin functionality when converted to entity link. */ public function testPathPlugin() { /** @var \Drupal\Core\Render\RendererInterface $renderer */ $renderer = $this->container->get('renderer'); $view = Views::getView('test_node_path_plugin'); + + // The configured deprecated node path plugin should be converted to the + // entity link plugin. + $field = $view->getHandler('page_1', 'field', 'path'); + $this->assertEqual('entity_link', $field['plugin_id']); + $view->initDisplay(); $view->setDisplay('page_1'); $view->initStyle();