djangoldp-notification/djangoldp_notification/factories.py

17 lines
623 B
Python
Raw Normal View History

2019-01-11 10:46:23 +00:00
import factory
from .models import Notification
from django.contrib.auth.models import User
from django.db.models.signals import post_save
@factory.django.mute_signals(post_save)
class NotificationFactory(factory.django.DjangoModelFactory):
class Meta:
model = Notification
type = factory.Faker('text', max_nb_chars=50)
summary = factory.Faker('paragraph', nb_sentences=3, variable_nb_sentences=True)
2019-01-31 09:44:41 +00:00
author_user = factory.Faker('url')
2019-01-11 10:46:23 +00:00
user = factory.Iterator(User.objects.all())
date = factory.Faker('past_datetime')
2019-04-04 10:18:24 +00:00
unread = factory.Faker('boolean')
2019-01-11 10:46:23 +00:00
object = factory.Faker('url')