registration.feature 797 Bytes
Newer Older
1 2 3 4 5 6
Feature: Register for a course
  As a registered user
  In order to access my class content
  I want to register for a class on the edX website

  	Scenario: I can register for a course
7 8
    Given The course "6.002x" exists
    And I am logged in
9
    And I visit the courses page
10
    When I register for the course "6.002x"
11 12 13
  	Then I should see the course numbered "6.002x" in my dashboard

    Scenario: I can unregister for a course
14
    Given I am registered for the course "6.002x"
15
    And I visit the dashboard
16 17 18
    Then I should see the course numbered "6.002x" in my dashboard
    When I unregister for the course numbered "6.002x"
    Then I should be on the dashboard page
19
    And I should see an empty dashboard message
20
    And I should NOT see the course numbered "6.002x" in my dashboard