Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
@core @core_user
2
Feature: Social profile fields can not have a duplicate shortname.
3
  In order edit social profile fields properly
4
  As an admin
5
  I should not be able to create duplicate shortnames for social profile fields.
6
 
7
  @javascript
8
  Scenario: Verify you can edit social profile fields.
9
    Given I log in as "admin"
10
    When I navigate to "Users > Accounts > User profile fields" in site administration
11
    And I click on "Create a new profile field" "link"
12
    And I click on "Social" "link"
13
    And I set the following fields to these values:
14
      | Network type                  | Yahoo ID         |
15
      | Short name                    | yahoo            |
16
    And I click on "Save changes" "button"
17
    And I click on "Create a new profile field" "link"
18
    And I click on "Social" "link"
19
    And I set the following fields to these values:
20
      | Network type                  | Yahoo ID         |
21
      | Short name                    | yahoo            |
22
    And I click on "Save changes" "button"
23
    Then I should see "This short name is already in use"