Added a test factories file for mailinglists.

- Legacy-Id: 14588
This commit is contained in:
Henrik Levkowetz 2018-01-30 17:43:02 +00:00
parent 0c1105f4bb
commit ba1ab57eaf

View file

@ -0,0 +1,18 @@
# Copyright The IETF Trust 2018, All Rights Reserved
# -*- coding: utf-8 -*-
from __future__ import unicode_literals, print_function
import factory
import random
from ietf.mailinglists.models import List
class ListFactory(factory.DjangoModelFactory):
class Meta:
model = List
name = factory.Faker('word')
description = factory.Faker('sentence', nb_words=10)
advertised = factory.LazyAttribute(lambda obj: random.randint(0, 1))