[ Index ] |
PHP Cross Reference of moodle-2.8 |
[Summary view] [Print] [Text view]
1 @core @core_user 2 Feature: Tables can be sorted by additional names 3 In order to sort fields by additional names 4 As a user 5 I need to browse to a page with users in a table. 6 7 Background: 8 Given the following "users" exist: 9 | username | firstname | lastname | middlename | alternatename | email | idnumber | 10 | student1 | Annie | Edison | Faith | Anne | [email protected] | s1 | 11 | student2 | George | Bradley | David | Gman | [email protected] | s2 | 12 | student3 | Travis | Sutcliff | Peter | Mr T | [email protected] | s3 | 13 And I log in as "admin" 14 And I navigate to "User policies" node in "Site administration > Users > Permissions" 15 And I set the following administration settings values: 16 | Full name format | firstname middlename lastname | 17 | Alternative full name format | firstname middlename alternatename lastname | 18 19 @javascript 20 Scenario: All user names are show and sortable in the administration user list. 21 Given I navigate to "Browse list of users" node in "Site administration > Users > Accounts" 22 Then the following should exist in the "users" table: 23 | First name / Middle name / Alternate name / Surname | Email address | 24 | Admin User | [email protected] | 25 | Annie Faith Anne Edison | [email protected] | 26 | George David Gman Bradley | [email protected] | 27 | Travis Peter Mr T Sutcliff | [email protected] | 28 And "Annie Faith Anne Edison" "table_row" should appear before "George David Gman Bradley" "table_row" 29 And "George David Gman Bradley" "table_row" should appear before "Travis Peter Mr T Sutcliff" "table_row" 30 And I follow "Middle name" 31 And "George David Gman Bradley" "table_row" should appear before "Annie Faith Anne Edison" "table_row" 32 And "Annie Faith Anne Edison" "table_row" should appear before "Travis Peter Mr T Sutcliff" "table_row" 33 And I follow "Middle name" 34 And "George David Gman Bradley" "table_row" should appear after "Annie Faith Anne Edison" "table_row" 35 And "Annie Faith Anne Edison" "table_row" should appear after "Travis Peter Mr T Sutcliff" "table_row" 36 And I follow "Alternate name" 37 And "Annie Faith Anne Edison" "table_row" should appear before "George David Gman Bradley" "table_row" 38 And "George David Gman Bradley" "table_row" should appear before "Travis Peter Mr T Sutcliff" "table_row" 39 And I follow "Alternate name" 40 And "Annie Faith Anne Edison" "table_row" should appear after "George David Gman Bradley" "table_row" 41 And "George David Gman Bradley" "table_row" should appear after "Travis Peter Mr T Sutcliff" "table_row" 42 And I follow "Surname" 43 And "George David Gman Bradley" "table_row" should appear before "Annie Faith Anne Edison" "table_row" 44 And "Annie Faith Anne Edison" "table_row" should appear before "Travis Peter Mr T Sutcliff" "table_row" 45 And I follow "Surname" 46 And "George David Gman Bradley" "table_row" should appear after "Annie Faith Anne Edison" "table_row" 47 And "Annie Faith Anne Edison" "table_row" should appear after "Travis Peter Mr T Sutcliff" "table_row"
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Fri Nov 28 20:29:05 2014 | Cross-referenced by PHPXref 0.7.1 |