diff --git a/core/modules/user/config/tour.tour.user-ui.yml b/core/modules/user/config/tour.tour.user-ui.yml deleted file mode 100644 index c19050a..0000000 --- a/core/modules/user/config/tour.tour.user-ui.yml +++ /dev/null @@ -1,38 +0,0 @@ -id: user -module: user -label: 'Profile ui' -langcode: en -paths: - - 'user/*/edit' -tips: - user-main: - id: user-main - plugin: text - label: 'Edit user' - body: 'Editing a user profile allows you to change basic attributes for your site users.' - weight: '1' - user-status: - id: user-status - plugin: text - label: 'Status' - body: 'This section shows the current user status. Active users can login to the site. Changing the status to Blocked prevents them from logging in.' - weight: '2' - attributes: - data-class: 'form-item-status' - user-role: - id: user-role - plugin: text - label: 'Role' - body: 'This section shows the role of the user. A role defines a group of users that have certain privileges assigned in user permissions.' - weight: '3' - attributes: - data-class: 'form-item-roles' - user-picture: - id: user-picture - plugin: text - label: 'Picture' - body: 'Use this section to provide an image that can be viewed by any site visitor.' - weight: '4' - attributes: - data-class: 'form-managed-file' -status: '1' \ No newline at end of file diff --git a/core/modules/user/lib/Drupal/user/Tests/UserProfileTourTest.php b/core/modules/user/lib/Drupal/user/Tests/UserProfileTourTest.php deleted file mode 100644 index d20c019..0000000 --- a/core/modules/user/lib/Drupal/user/Tests/UserProfileTourTest.php +++ /dev/null @@ -1,67 +0,0 @@ - 'User profile UI tour tests', - 'description' => 'Tests the User profile UI tour.', - 'group' => 'Tour', - ); - } - - protected function setUp() { - parent::setUp(); - // @see standard.install - module_load_install('user'); - user_install_picture_field(); - - $this->adminUser = $this->drupalCreateUser(array('access tour', 'administer users', 'administer permissions')); - $this->drupalLogin($this->adminUser); - } - - /** - * Tests menu tour tip availability. - */ - public function testMenuTourTips() { - // Visit user page. - $this->drupalGet('user/' . $this->adminUser->id() . '/edit'); - $this->assertTourTips(); - } - -}