ENT-942 Implement an abstraction layer for SoftwareSecurePhotoVerification class methods

This commit is contained in:
Brittney Exline
2018-03-29 10:16:11 -04:00
parent e60e792720
commit d31d9bd684
22 changed files with 589 additions and 503 deletions

View File

@@ -184,7 +184,7 @@ class TestAnalyticsBasic(ModuleStoreTestCase):
# is returned by verification and enrollment code
with patch("student.models.CourseEnrollment.enrollment_mode_for_user") as enrollment_patch:
with patch(
"lms.djangoapps.verify_student.models.SoftwareSecurePhotoVerification.verification_status_for_user"
"lms.djangoapps.verify_student.services.IDVerificationService.verification_status_for_user"
) as verify_patch:
enrollment_patch.return_value = ["verified"]
verify_patch.return_value = "dummy verification status"