Created
May 20, 2021 10:46
-
-
Save piotrkilczuk/fd478bcc8bdc3d7acc1d6f34427745e3 to your computer and use it in GitHub Desktop.
factories_call_v4.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> 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