Files
centurion_erp/app/tests/fixtures/model_centurionmodelnote.py

43 lines
966 B
Python

import datetime
import pytest
from core.models.centurion_notes import CenturionModelNote
@pytest.fixture( scope = 'class')
def model_centurionmodelnote():
yield CenturionModelNote
@pytest.fixture( scope = 'class')
def kwargs_centurionmodelnote(django_db_blocker, kwargs_centurionmodel, kwargs_user, model_user):
kwargs = kwargs_centurionmodel.copy()
del kwargs['model_notes']
with django_db_blocker.unblock():
random_str = str(datetime.datetime.now(tz=datetime.timezone.utc))
user_kwargs = kwargs_user.copy()
user_kwargs.update({
'username': 'note_user' + str(random_str)
})
user = model_user.objects.create(
**user_kwargs,
)
kwargs = {
**kwargs,
'body': 'a random note',
'created_by': user,
'content_type': 'fixture sets value',
}
yield kwargs.copy()
with django_db_blocker.unblock():
user.delete()