Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
@mod @mod_forum
2
Feature: Users can choose to set start and end time for display of their discussions
3
  In order to temporarly hide discussions to students
4
  As a teacher
5
  I need to set a discussion time start and time end
6
 
7
  Scenario: Student should not see the tooltip or the discussion
8
    Given the following "users" exist:
9
      | username | firstname | lastname | email |
10
      | student1 | Student | 1 | student1@example.com |
11
    And the following "courses" exist:
12
      | fullname | shortname | category |
13
      | Course 1 | C1 | 0 |
14
    And the following "course enrolments" exist:
15
      | user | course | role |
16
      | student1 | C1 | student |
17
    And the following "activities" exist:
18
      | activity   | name            | course | idnumber | type    |
19
      | forum      | Test forum name | C1     | forump1  | general |
20
    And the following "mod_forum > discussions" exist:
21
      | user     | forum   | name                           | message                              | timeend              | timestart |
22
      | admin    | forump1 | Discussion 1                   | Discussion contents 1, first message |                      |           |
23
      | admin    | forump1 | Discussion 2 timed not visible | Discussion contents 2, first message | ##1 Jan 2014 08:00## |           |
24
      | admin    | forump1 | Discussion 3 timed visible now | Discussion contents 3, first message |                      | 1         |
25
    And the following config values are set as admin:
26
      | forum_enabletimedposts | 1 |
27
    And I am on the "Test forum name" "forum activity" page logged in as admin
28
    And I should see "Discussion 2 timed"
29
    And I should see "Discussion 3 timed"
30
    And "[data-region=timed-label]" "css_element" should exist
31
    When I am on the "Test forum name" "forum activity" page logged in as student1
32
    Then I should see "Discussion 1"
33
    And I should not see "Discussion 2 timed"
34
    And "[data-region=timed-label]" "css_element" should not exist
35
    And I should see "Discussion 3 timed"