From 41bb1448542aba94fcd561b8a443cfc79b22066a Mon Sep 17 00:00:00 2001 From: Cole Rogers Date: Fri, 1 Jun 2018 15:49:01 -0400 Subject: [PATCH] Removed student entrance test --- .../tests/lms/test_lms_entrance_exams.py | 22 ------------------- 1 file changed, 22 deletions(-) diff --git a/common/test/acceptance/tests/lms/test_lms_entrance_exams.py b/common/test/acceptance/tests/lms/test_lms_entrance_exams.py index ddb94c8804..d67e19a9ea 100644 --- a/common/test/acceptance/tests/lms/test_lms_entrance_exams.py +++ b/common/test/acceptance/tests/lms/test_lms_entrance_exams.py @@ -84,25 +84,3 @@ class EntranceExamPassTest(EntranceExamTest): """) return XBlockFixtureDesc('problem', 'HEIGHT OF EIFFEL TOWER', data=xml) - - # TODO: TNL-6546: Delete test using outline on courseware - def test_course_is_unblocked_as_soon_as_student_passes_entrance_exam_2(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 - """ - 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()) - self.assertEqual(self.courseware_page.num_sections, 2)