66 lines
1.3 KiB
PHP
66 lines
1.3 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @file
|
|
* Contains \Drupal\language\Tests\LanguageTourTest.
|
|
*/
|
|
|
|
namespace Drupal\language\Tests;
|
|
|
|
use Drupal\tour\Tests\TourTestBase;
|
|
|
|
/**
|
|
* Tests tour functionality.
|
|
*
|
|
* @group tour
|
|
*/
|
|
class LanguageTourTest extends TourTestBase {
|
|
|
|
/**
|
|
* An admin user with administrative permissions for views.
|
|
*
|
|
* @var \Drupal\user\UserInterface
|
|
*/
|
|
protected $adminUser;
|
|
|
|
/**
|
|
* Modules to enable.
|
|
*
|
|
* @var array
|
|
*/
|
|
public static $modules = array('language', 'tour');
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function setUp() {
|
|
parent::setUp();
|
|
$this->adminUser = $this->drupalCreateUser(array('administer languages', 'access tour'));
|
|
$this->drupalLogin($this->adminUser);
|
|
}
|
|
|
|
/**
|
|
* 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();
|
|
}
|
|
|
|
}
|