21 lines
372 B
Python
21 lines
372 B
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
# ITerativ GmbH
|
|
# http://www.iterativ.ch/
|
|
#
|
|
# Copyright (c) 2019 ITerativ GmbH. All rights reserved.
|
|
#
|
|
# Created on 2019-10-08
|
|
# @author: chrigu <christian.cueni@iterativ.ch>
|
|
import random
|
|
|
|
import factory
|
|
|
|
from registration.models import License
|
|
|
|
|
|
class LicenseFactory(factory.django.DjangoModelFactory):
|
|
class Meta:
|
|
model = License
|
|
|