X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=web%2Fcore%2Fmodules%2Fuser%2Fsrc%2FTests%2FViews%2FAccessTestBase.php;fp=web%2Fcore%2Fmodules%2Fuser%2Fsrc%2FTests%2FViews%2FAccessTestBase.php;h=0000000000000000000000000000000000000000;hp=b0395b0f09ae4add045a2d55ffd2b4cb94404e7b;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hpb=680c79a86e3ed402f263faeac92e89fb6d9edcc0 diff --git a/web/core/modules/user/src/Tests/Views/AccessTestBase.php b/web/core/modules/user/src/Tests/Views/AccessTestBase.php deleted file mode 100644 index b0395b0f0..000000000 --- a/web/core/modules/user/src/Tests/Views/AccessTestBase.php +++ /dev/null @@ -1,66 +0,0 @@ -drupalPlaceBlock('system_breadcrumb_block'); - - $this->enableViewsTestModule(); - - $this->webUser = $this->drupalCreateUser(); - $roles = $this->webUser->getRoles(); - $this->webRole = $roles[0]; - - $this->normalRole = $this->drupalCreateRole([]); - $this->normalUser = $this->drupalCreateUser(['views_test_data test permission']); - $this->normalUser->addRole($this->normalRole); - $this->normalUser->save(); - // @todo when all the plugin information is cached make a reset function and - // call it here. - } - -}