mirror of
https://github.com/mediacms-io/mediacms.git
synced 2024-11-22 08:13:33 +01:00
16 lines
307 B
Python
16 lines
307 B
Python
|
import factory
|
||
|
from django.conf import settings
|
||
|
from faker import Faker
|
||
|
|
||
|
fake = Faker()
|
||
|
User = settings.AUTH_USER_MODEL
|
||
|
|
||
|
|
||
|
class UserFactory(factory.django.DjangoModelFactory):
|
||
|
class Meta:
|
||
|
model = User
|
||
|
|
||
|
description = fake.paragraph(nb_sentences=4)
|
||
|
name = fake.name()
|
||
|
is_editor = True
|