X-Git-Url: http://aleph1.co.uk/gitweb/?a=blobdiff_plain;f=web%2Fcore%2Fmodules%2Fnode%2Ftests%2Fsrc%2FFunctional%2FViews%2FPathPluginTest.php;h=d8d088d978ac2f6dfcde682866cfca9259915bd0;hb=0bf8d09d2542548982e81a441b1f16e75873a04f;hp=3cb4e372c9c053dd42dcb1d3556708004cf611e1;hpb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;p=yaffs-website 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();