1 |
efrain |
1 |
@mod @mod_questionnaire @wip
|
|
|
2 |
Feature: Rate scale questions can use names for degrees
|
|
|
3 |
In order to create questions with names for degrees
|
|
|
4 |
As a teacher
|
|
|
5 |
I need to enter a rate and specify specific named degrees
|
|
|
6 |
|
|
|
7 |
@javascript
|
|
|
8 |
Scenario: Specify names for the degrees
|
|
|
9 |
Given the following "users" exist:
|
|
|
10 |
| username | firstname | lastname | email |
|
|
|
11 |
| teacher1 | Teacher | 1 | teacher1@example.com |
|
|
|
12 |
| student1 | Student | 1 | student1@example.com |
|
|
|
13 |
And the following "courses" exist:
|
|
|
14 |
| fullname | shortname | category |
|
|
|
15 |
| Course 1 | C1 | 0 |
|
|
|
16 |
And the following "course enrolments" exist:
|
|
|
17 |
| user | course | role |
|
|
|
18 |
| teacher1 | C1 | editingteacher |
|
|
|
19 |
| student1 | C1 | student |
|
|
|
20 |
And the following "activities" exist:
|
|
|
21 |
| activity | name | description | course | idnumber |
|
|
|
22 |
| questionnaire | Test questionnaire | Test questionnaire description | C1 | questionnaire0 |
|
|
|
23 |
And I log in as "teacher1"
|
|
|
24 |
And I am on "Course 1" course homepage
|
|
|
25 |
And I follow "Test questionnaire"
|
|
|
26 |
And I navigate to "Questions" in current page administration
|
|
|
27 |
And I add a "Rate (scale 1..5)" question and I fill the form with:
|
|
|
28 |
| Question Name | Q1 |
|
|
|
29 |
| Yes | y |
|
|
|
30 |
| Nb of scale items | 3 |
|
|
|
31 |
| Type of rate scale | Normal |
|
|
|
32 |
| Question Text | What did you think of these movies? |
|
|
|
33 |
| Possible answers | Star Wars,Casablanca,Airplane |
|
|
|
34 |
| Named degrees | 1=I did not like,2=Ehhh,3=I liked |
|
|
|
35 |
Then I should see "position 1"
|
|
|
36 |
And I should see "[Rate (scale 1..5)] (Q1)"
|
|
|
37 |
And I should see "What did you think of these movies?"
|
|
|
38 |
And I log out
|
|
|
39 |
|
|
|
40 |
And I log in as "student1"
|
|
|
41 |
And I am on "Course 1" course homepage
|
|
|
42 |
And I follow "Test questionnaire"
|
|
|
43 |
And I navigate to "Answer the questions..." in current page administration
|
|
|
44 |
Then I should see "Test questionnaire"
|
|
|
45 |
And I should see "What did you think of these movies?"
|
|
|
46 |
And I should see "I did not like"
|
|
|
47 |
And I should see "Ehhh"
|
|
|
48 |
And I should see "I liked"
|
|
|
49 |
And I click on "Choice I liked for row Star Wars" "radio"
|
|
|
50 |
And I click on "Choice I liked for row Casablanca" "radio"
|
|
|
51 |
And I click on "Choice I liked for row Airplane" "radio"
|
|
|
52 |
And I press "Submit questionnaire"
|