I wanted to know if in the tests it is possible to somehow create an "artificial" model using FactoryBoy without touching models.py
I mean a simple model such as:
class SomeMod(models.Model):
title = models.CharField(max_length=255, blank=True, null=True)
description = models.CharField(max_length=255, blank=True, null=True)
def __str__(self):
return self.title