Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
edx-platform-release
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hsin-Yu Chien
edx-platform-release
Commits
c3c4a0e9
Commit
c3c4a0e9
authored
11 years ago
by
JonahStanley
Browse files
Options
Downloads
Patches
Plain Diff
Hopefully fixed registration flakey test
parent
0e4c0811
Loading
Loading
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
lms/djangoapps/courseware/features/registration.feature
+4
-4
4 additions, 4 deletions
lms/djangoapps/courseware/features/registration.feature
lms/djangoapps/courseware/features/registration.py
+11
-4
11 additions, 4 deletions
lms/djangoapps/courseware/features/registration.py
with
15 additions
and
8 deletions
lms/djangoapps/courseware/features/registration.feature
+
4
−
4
View file @
c3c4a0e9
...
...
@@ -13,8 +13,8 @@ Feature: Register for a course
Scenario
:
I
can unregister for a course
Given
I am registered for the course
"6.002x"
And
I visit the dashboard
When
I click the link with the text
"Unregister"
And
I press the
"Unregister"
button in the Unenroll dialog
Then
All dialogs should be closed
And
I should be on the dashboard page
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
And
I should see
"Looks like you haven't registered for any courses yet."
somewhere in the page
And
I should NOT see the course numbered
"6.002x"
in my dashboard
This diff is collapsed.
Click to expand it.
lms/djangoapps/courseware/features/registration.py
+
11
−
4
View file @
c3c4a0e9
...
...
@@ -25,8 +25,15 @@ def i_should_see_that_course_in_my_dashboard(step, course):
assert
world
.
is_css_present
(
course_link_css
)
@step
(
u
'
I press the
"
([^
"
]*)
"
button in the Unenroll dialog
'
)
def
i_press_the_button_in_the_unenroll_dialog
(
step
,
value
):
button_css
=
'
section#unenroll-modal input[value=
"
%s
"
]
'
%
value
@step
(
u
'
I should NOT see the course numbered
"
([^
"
]*)
"
in my dashboard$
'
)
def
i_should_not_see_that_course_in_my_dashboard
(
step
,
course
):
course_link_css
=
'
section.my-courses a[href*=
"
%s
"
]
'
%
course
assert
not
world
.
is_css_present
(
course_link_css
)
@step
(
u
'
I unregister for the course numbered
"
([^
"
]*)
"'
)
def
i_unregister_for_that_course
(
step
,
course
):
unregister_css
=
'
section.info a[href*=
"
#unenroll-modal
"
][data-course-number*=
"
%s
"
]
'
%
course
world
.
css_click
(
unregister_css
)
button_css
=
'
section#unenroll-modal input[value=
"
Unregister
"
]
'
world
.
css_click
(
button_css
)
assert
world
.
is_css_present
(
'
section.container.dashboard
'
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment