Skip to content

Instantly share code, notes, and snippets.

@piotrkilczuk
Created May 20, 2021 10:46
Show Gist options
  • Save piotrkilczuk/fd478bcc8bdc3d7acc1d6f34427745e3 to your computer and use it in GitHub Desktop.
Save piotrkilczuk/fd478bcc8bdc3d7acc1d6f34427745e3 to your computer and use it in GitHub Desktop.
factories_call_v4.py
>>> from fbd.championship.factories import PlayerFactory, ClubFactory
>>> club = ClubFactory()
>>> player_with_a_picture = PlayerFactory(club=club, picture__filename='chuck.png')
>>> player_with_a_picture.picture
<ImageFieldFile: player/picture/68/chuck.png>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment