Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1441 ariadna 1
@core @core_notes
2
Feature: Add notes to site users
3
  In order to share information with other users
4
  As an admin
5
  I need to add notes to site user accounts
6
 
7
  Scenario: Add a user site note
8
    Given the following "users" exist:
9
      | username | firstname | lastname | email                |
10
      | student1 | Student   | 1        | student1@example.com |
11
    When I am on the "student1" "user > profile" page logged in as "admin"
12
    And I follow "Notes"
13
    And I follow "Add a new note"
14
    And I set the field "Content" to "Student 1 needs to pick up his game"
15
    And I press "Save changes"
16
    Then I should see "Student 1 needs to pick up his game" in the ".notelist" "css_element"