Conflicts: cms/djangoapps/contentstore/features/advanced-settings.feature cms/djangoapps/contentstore/features/checklists.feature cms/djangoapps/contentstore/features/component.feature cms/djangoapps/contentstore/features/course-overview.feature cms/djangoapps/contentstore/features/course-settings.feature cms/djangoapps/contentstore/features/course-team.feature cms/djangoapps/contentstore/features/course-updates.feature cms/djangoapps/contentstore/features/courses.feature cms/djangoapps/contentstore/features/discussion-editor.feature cms/djangoapps/contentstore/features/grading.feature cms/djangoapps/contentstore/features/html-editor.feature cms/djangoapps/contentstore/features/problem-editor.feature cms/djangoapps/contentstore/features/section.feature cms/djangoapps/contentstore/features/signup.feature cms/djangoapps/contentstore/features/static-pages.feature cms/djangoapps/contentstore/features/subsection.feature cms/djangoapps/contentstore/features/textbooks.feature cms/djangoapps/contentstore/features/upload.feature cms/djangoapps/contentstore/features/video-editor.feature cms/djangoapps/contentstore/features/video.feature lms/djangoapps/courseware/features/certificates.feature lms/djangoapps/courseware/features/help.feature lms/djangoapps/courseware/features/high-level-tabs.feature lms/djangoapps/courseware/features/homepage.feature lms/djangoapps/courseware/features/login.feature lms/djangoapps/courseware/features/lti.feature lms/djangoapps/courseware/features/navigation.feature lms/djangoapps/courseware/features/problems.feature lms/djangoapps/courseware/features/registration.feature lms/djangoapps/courseware/features/signup.feature lms/djangoapps/courseware/features/video.feature lms/djangoapps/courseware/features/word_cloud.feature
62 lines
2.5 KiB
Gherkin
62 lines
2.5 KiB
Gherkin
@shard_2
|
|
Feature: CMS.Create Subsection
|
|
In order offer a course on the edX platform
|
|
As a course author
|
|
I want to create and edit subsections
|
|
|
|
Scenario: Add a new subsection to a section
|
|
Given I have opened a new course section in Studio
|
|
When I click the New Subsection link
|
|
And I enter the subsection name and click save
|
|
Then I see my subsection on the Courseware page
|
|
|
|
Scenario: Add a new subsection (with a name containing a quote) to a section (bug #216)
|
|
Given I have opened a new course section in Studio
|
|
When I click the New Subsection link
|
|
And I enter a subsection name with a quote and click save
|
|
Then I see my subsection name with a quote on the Courseware page
|
|
And I click on the subsection
|
|
Then I see the complete subsection name with a quote in the editor
|
|
|
|
Scenario: Assign grading type to a subsection and verify it is still shown after refresh (bug #258)
|
|
Given I have opened a new course section in Studio
|
|
And I have added a new subsection
|
|
And I mark it as Homework
|
|
Then I see it marked as Homework
|
|
And I reload the page
|
|
Then I see it marked as Homework
|
|
|
|
# Safari has trouble saving the date in Sauce
|
|
@skip_safari
|
|
Scenario: Set a due date in a different year (bug #256)
|
|
Given I have opened a new subsection in Studio
|
|
And I set the subsection release date to 12/25/2011 03:00
|
|
And I set the subsection due date to 01/02/2012 04:00
|
|
Then I see the subsection release date is 12/25/2011 03:00
|
|
And I see the subsection due date is 01/02/2012 04:00
|
|
And I reload the page
|
|
Then I see the subsection release date is 12/25/2011 03:00
|
|
And I see the subsection due date is 01/02/2012 04:00
|
|
|
|
Scenario: Delete a subsection
|
|
Given I have opened a new course section in Studio
|
|
And I have added a new subsection
|
|
And I see my subsection on the Courseware page
|
|
When I will confirm all alerts
|
|
And I press the "subsection" delete icon
|
|
And I confirm the prompt
|
|
Then the subsection does not exist
|
|
|
|
Scenario: Sync to Section
|
|
Given I have opened a new course section in Studio
|
|
And I click the Edit link for the release date
|
|
And I set the section release date to 01/02/2103
|
|
And I have added a new subsection
|
|
And I click on the subsection
|
|
And I set the subsection release date to 01/20/2103
|
|
And I reload the page
|
|
And I click the link to sync release date to section
|
|
And I wait for "1" second
|
|
And I reload the page
|
|
Then I see the subsection release date is 01/02/2103
|