Files
django-dav-events/dav_registration/tests/generic.py
heinzel c3bbaa7200
All checks were successful
buildbot/tox Build done.
satisfy tests
2020-12-09 13:16:37 +01:00

12 lines
244 B
Python

from django.utils import timezone
from ..models import Registration
THIS_YEAR = timezone.now().year
class RegistrationMixin(object):
def create_registration(self, data):
r = Registration(**data)
r.save()
return r