Files
edx-platform/lms/djangoapps/verify_student/tests/factories.py
2017-06-11 21:48:06 -04:00

18 lines
409 B
Python

"""
Factories related to student verification.
"""
from factory.django import DjangoModelFactory
from lms.djangoapps.verify_student.models import SoftwareSecurePhotoVerification
class SoftwareSecurePhotoVerificationFactory(DjangoModelFactory):
"""
Factory for SoftwareSecurePhotoVerification
"""
class Meta(object):
model = SoftwareSecurePhotoVerification
status = 'approved'