|
Ultima modificación |
Ver Log
|
Rev |
Autor |
Línea Nro. |
Línea |
1441 |
ariadna |
1 |
Feature: Fixture to prepare scenario for testing from an outline
|
|
|
2 |
|
|
|
3 |
Scenario Outline: creating test scenarios using an outline
|
|
|
4 |
Given the following "course" exists:
|
|
|
5 |
| fullname | <name> |
|
|
|
6 |
| shortname | <shortname> |
|
|
|
7 |
| category | 0 |
|
|
|
8 |
| numsections | 3 |
|
|
|
9 |
|
|
|
10 |
Examples:
|
|
|
11 |
| name | shortname |
|
|
|
12 |
| Course 1 | C1 |
|
|
|
13 |
| Course 2 | C2 |
|
|
|
14 |
| Course 3 | C3 |
|
|
|
15 |
|
|
|
16 |
@cleanup
|
|
|
17 |
Scenario: clean up fixture to prepare scenario for testing from an outline
|
|
|
18 |
Given the course "Course 1" is deleted
|
|
|
19 |
And the course "Course 2" is deleted
|
|
|
20 |
And the course "Course 3" is deleted
|