15 lines
418 B
Gherkin
15 lines
418 B
Gherkin
@shard_2
|
|
Feature: LMS.Events
|
|
As a researcher, I want to be able to track events in the LMS
|
|
|
|
Scenario Outline: An event is emitted for each request
|
|
Given: I am registered for the course "6.002x"
|
|
And I visit the url "<url>"
|
|
Then a course url "<url>" event is emitted
|
|
|
|
Examples:
|
|
| url |
|
|
| /dashboard |
|
|
| /courses/{}/info |
|
|
| /courses/{}/courseware |
|