X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=web%2Fcore%2Fmodules%2Fviews%2Fsrc%2FTests%2FUpdate%2FEntityLinkOutputUrlUpdateTest.php;fp=web%2Fcore%2Fmodules%2Fviews%2Fsrc%2FTests%2FUpdate%2FEntityLinkOutputUrlUpdateTest.php;h=0000000000000000000000000000000000000000;hp=1e990926fed234ab2fded959223e41b6d9da1237;hb=0bf8d09d2542548982e81a441b1f16e75873a04f;hpb=74df008bdbb3a11eeea356744f39b802369bda3c diff --git a/web/core/modules/views/src/Tests/Update/EntityLinkOutputUrlUpdateTest.php b/web/core/modules/views/src/Tests/Update/EntityLinkOutputUrlUpdateTest.php deleted file mode 100644 index 1e990926f..000000000 --- a/web/core/modules/views/src/Tests/Update/EntityLinkOutputUrlUpdateTest.php +++ /dev/null @@ -1,41 +0,0 @@ -databaseDumpFiles = [ - __DIR__ . '/../../../../system/tests/fixtures/update/drupal-8.bare.standard.php.gz', - __DIR__ . '/../../../tests/fixtures/update/entity-link-output-url.php', - ]; - } - - /** - * Tests that the additional settings are added to the config. - */ - public function testViewsPostUpdateEntityLinkUrl() { - $this->runUpdates(); - - // Load and initialize our test view. - $view = View::load('node_link_update_test'); - $data = $view->toArray(); - // Check that the field contains the new values. - $this->assertIdentical(FALSE, $data['display']['default']['display_options']['fields']['view_node']['output_url_as_text']); - $this->assertIdentical(FALSE, $data['display']['default']['display_options']['fields']['view_node']['absolute']); - } - -}