Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
edx-platform-release
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
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
8519a867
Unverified
Commit
8519a867
authored
6 years ago
by
Feanil Patel
Committed by
GitHub
6 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #18264 from edx/feanil/remove_flaky_entrance_exam_test
Remove this flaky entrance exam test.
parents
a8f562e8
f2554fe1
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
common/test/acceptance/tests/lms/test_lms_entrance_exams.py
+0
-25
0 additions, 25 deletions
common/test/acceptance/tests/lms/test_lms_entrance_exams.py
with
0 additions
and
25 deletions
common/test/acceptance/tests/lms/test_lms_entrance_exams.py
+
0
−
25
View file @
8519a867
...
...
@@ -85,31 +85,6 @@ class EntranceExamPassTest(EntranceExamTest):
"""
)
return
XBlockFixtureDesc
(
'
problem
'
,
'
HEIGHT OF EIFFEL TOWER
'
,
data
=
xml
)
def
test_course_is_unblocked_as_soon_as_student_passes_entrance_exam
(
self
):
"""
Scenario: Ensure that entrance exam status message is updated and courseware is unblocked as soon as
student passes entrance exam.
Given I have a course with entrance exam as pre-requisite
When I pass entrance exam
Then I can see complete TOC of course
And I can see message indicating my pass status
When I switch to course home page
Then I see 2 sections
"""
self
.
courseware_page
.
visit
()
problem_page
=
ProblemPage
(
self
.
browser
)
self
.
assertEqual
(
problem_page
.
wait_for_page
().
problem_name
,
'
HEIGHT OF EIFFEL TOWER
'
)
self
.
assertTrue
(
self
.
courseware_page
.
has_entrance_exam_message
())
self
.
assertFalse
(
self
.
courseware_page
.
has_passed_message
())
problem_page
.
click_choice
(
'
choice_1
'
)
problem_page
.
click_submit
()
self
.
courseware_page
.
wait_for_page
()
self
.
assertTrue
(
self
.
courseware_page
.
has_passed_message
())
course_home_page
=
CourseHomePage
(
self
.
browser
,
self
.
course_id
)
course_home_page
.
visit
()
self
.
assertEqual
(
course_home_page
.
outline
.
num_sections
,
2
)
# TODO: TNL-6546: Delete test using outline on courseware
def
test_course_is_unblocked_as_soon_as_student_passes_entrance_exam_2
(
self
):
"""
...
...
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