Skip to content

Instantly share code, notes, and snippets.

@ProvoK
Last active March 10, 2018 17:30
Show Gist options
  • Save ProvoK/ee2e11f7d190508c9e6061587678ea01 to your computer and use it in GitHub Desktop.
Save ProvoK/ee2e11f7d190508c9e6061587678ea01 to your computer and use it in GitHub Desktop.
Factory boy simple example
import factory
class User:
def __init__(self, name, email):
self.name = name
self.email = email
class UserFactory(factory.Factory):
name = factory.Faker('name')
email = factory.Faker('email')
class Meta:
model = User
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment