March 2020
Intermediate to advanced
608 pages
17h 17m
English
We will test the liking action with mock by performing the following steps:
# myproject/apps/likes/tests/test_views.pyimport jsonfrom unittest import mockfrom django.contrib.auth.models import Userfrom django.contrib.contenttypes.models import ContentTypefrom django.test import TestCasefrom myproject.apps.locations.models import Locationclass JSSetLikeViewTest(TestCase): @classmethod def setUpClass(cls): super(JSSetLikeViewTest, cls).setUpClass() cls.location = Location.objects.create( name="Park Güell", description="If you want to see something spectacular, come to Barcelona, Catalonia, Spain and visit Park ...
Read now
Unlock full access