X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=web%2Fcore%2Fmodules%2Flanguage%2Fsrc%2FTests%2FLanguageTourTest.php;fp=web%2Fcore%2Fmodules%2Flanguage%2Fsrc%2FTests%2FLanguageTourTest.php;h=0000000000000000000000000000000000000000;hp=b11006ec3e9f39a43ab88879ae22b295e0350df5;hb=9917807b03b64faf00f6a1f29dcb6eafc454efa5;hpb=aea91e65e895364e460983b890e295aa5d5540a5 diff --git a/web/core/modules/language/src/Tests/LanguageTourTest.php b/web/core/modules/language/src/Tests/LanguageTourTest.php deleted file mode 100644 index b11006ec3..000000000 --- a/web/core/modules/language/src/Tests/LanguageTourTest.php +++ /dev/null @@ -1,62 +0,0 @@ -adminUser = $this->drupalCreateUser(['administer languages', 'access tour']); - $this->drupalLogin($this->adminUser); - $this->drupalPlaceBlock('local_actions_block'); - } - - /** - * Tests language tour tip availability. - */ - public function testLanguageTour() { - $this->drupalGet('admin/config/regional/language'); - $this->assertTourTips(); - } - - /** - * Go to add language page and check the tour tooltips. - */ - public function testLanguageAddTour() { - $this->drupalGet('admin/config/regional/language/add'); - $this->assertTourTips(); - } - - /** - * Go to edit language page and check the tour tooltips. - */ - public function testLanguageEditTour() { - $this->drupalGet('admin/config/regional/language/edit/en'); - $this->assertTourTips(); - } - -}