Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
77212379
Commit
77212379
authored
Jun 13, 2017
by
Eric Fischer
Committed by
GitHub
Jun 13, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #15310 from edx/sylvia/update_help_tokens
Update Studio help tokens following doc reorg for Publisher
parents
3fbe60ef
3ea7a189
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
13 deletions
+9
-13
cms/envs/help_tokens.ini
+5
-5
common/test/acceptance/tests/studio/test_studio_help.py
+4
-8
No files found.
cms/envs/help_tokens.ini
View file @
77212379
# below are the sub-paths to the documentation for the various pages
# NOTE: If any of these page settings change, the
n their corresponding test should
be updated
# NOTE: If any of these page settings change, the
ir corresponding test must
be updated
# in edx-platform/common/test/acceptance/tests/studio/test_studio.help.py
[pages]
default
=
course_author:index.html
...
...
@@ -12,12 +12,12 @@ updates = course_author:course_assets/handouts_updates.html
pages
=
course_author:course_assets/pages.html
files
=
course_author:course_assets/course_files.html
textbooks
=
course_author:course_assets/textbooks.html
schedule
=
course_author:set_up_course/s
etting_up_student_view
.html
schedule
=
course_author:set_up_course/s
tudio_add_course_information/index
.html
grading
=
course_author:grading/index.html
team_course
=
course_author:set_up_course/
course_staffing.html#add-course-team-members
team_course
=
course_author:set_up_course/
studio_add_course_information/studio_course_staffing.html
team_library
=
course_author:course_components/libraries.html#give-other-users-access-to-your-library
advanced
=
course_author:index.html
checklist
=
course_author:set_up_course/
creating_new_course
.html
checklist
=
course_author:set_up_course/
index
.html
import_library
=
course_author:course_components/libraries.html#import-a-library
import_course
=
course_author:releasing_course/export_import_course.html#import-a-course
export_library
=
course_author:course_components/libraries.html#export-a-library
...
...
@@ -31,7 +31,7 @@ enrollment_tracks = course_author:course_features/cohorts/cohorted_courseware.ht
group_configurations
=
course_author:course_features/content_experiments/content_experiments_configure.html#set-up-group-configurations-in-edx-studio
container
=
course_author:developing_course/course_components.html#components-that-contain-other-components
video
=
course_author:video/video_uploads.html
certificates
=
course_author:set_up_course/
creating_course
_certificates.html
certificates
=
course_author:set_up_course/
studio_add_course_information/studio_creating
_certificates.html
# below are the language directory names for the different locales
[locales]
...
...
common/test/acceptance/tests/studio/test_studio_help.py
View file @
77212379
...
...
@@ -799,7 +799,6 @@ class SettingsHelpTest(StudioCourseTest):
self
.
settings_page
.
visit
()
@skip
(
"Fix studio help links in DOC-3686"
)
def
test_settings_page_nav_help
(
self
):
"""
Scenario: Help link in navigation bar is working on Settings page.
...
...
@@ -809,7 +808,7 @@ class SettingsHelpTest(StudioCourseTest):
Then Help link should open.
And help url should be correct
"""
expected_url
=
_get_expected_documentation_url
(
'/set_up_course/s
etting_up_student_view
.html'
)
expected_url
=
_get_expected_documentation_url
(
'/set_up_course/s
tudio_add_course_information/index
.html'
)
# Assert that help link is correct.
assert_nav_help_link
(
...
...
@@ -872,7 +871,6 @@ class CourseTeamSettingsHelpTest(StudioCourseTest):
self
.
course_team_settings_page
.
visit
()
@skip
(
"Fix studio help links in DOC-3686"
)
def
test_course_course_team_nav_help
(
self
):
"""
Scenario: Help link in navigation bar is working on Course Team settings page
...
...
@@ -882,7 +880,7 @@ class CourseTeamSettingsHelpTest(StudioCourseTest):
Then Help link should open.
And help url should be correct
"""
expected_url
=
_get_expected_documentation_url
(
'/set_up_course/
course_staffing.html#add-course-team-members
'
)
expected_url
=
_get_expected_documentation_url
(
'/set_up_course/
studio_add_course_information/studio_course_staffing.html
'
)
# Assert that help link is correct.
assert_nav_help_link
(
...
...
@@ -1002,7 +1000,6 @@ class CertificatePageHelpTest(StudioCourseTest):
self
.
certificates_page
.
visit
()
@skip
(
"Fix studio help links in DOC-3686"
)
def
test_certificate_page_nav_help
(
self
):
"""
Scenario: Help link in navigation bar is working on Certificate settings page
...
...
@@ -1012,7 +1009,7 @@ class CertificatePageHelpTest(StudioCourseTest):
Then Help link should open.
And help url should be correct
"""
expected_url
=
_get_expected_documentation_url
(
'/set_up_course/
creating_course
_certificates.html'
)
expected_url
=
_get_expected_documentation_url
(
'/set_up_course/
studio_add_course_information/studio_creating
_certificates.html'
)
# Assert that help link is correct.
assert_nav_help_link
(
...
...
@@ -1021,7 +1018,6 @@ class CertificatePageHelpTest(StudioCourseTest):
href
=
expected_url
,
)
@skip
(
"Fix studio help links in DOC-3686"
)
def
test_certificate_page_side_bar_help
(
self
):
"""
Scenario: Help link in side bar is working Certificate settings page
...
...
@@ -1031,7 +1027,7 @@ class CertificatePageHelpTest(StudioCourseTest):
Then Help link should open.
And help url should be correct
"""
expected_url
=
_get_expected_documentation_url
(
'/set_up_course/
creating_course
_certificates.html'
)
expected_url
=
_get_expected_documentation_url
(
'/set_up_course/
studio_add_course_information/studio_creating
_certificates.html'
)
# Assert that help link is correct.
assert_side_bar_help_link
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment