Skip to Content
Django RESTful Web Services
book

Django RESTful Web Services

by Gastón C. Hillar
January 2018
Intermediate to advanced
326 pages
7h 38m
English
Packt Publishing
Content preview from Django RESTful Web Services

Writing unit tests for a RESTful Web Service

Now, we will write our first round of unit tests related to the drone category class based views: DroneCategoryList and DroneCategoryDetail. Open the existing restful01/drones/tests.py file and replace the existing code with the following lines that declare many import statements and the DroneCategoryTests class. The code file for the sample is included in the hillar_django_restful_10_01 folder in the restful01/drones/tests.py file:

from django.utils.http import urlencode from django.core.urlresolvers import reverse from rest_framework import status from rest_framework.test import APITestCase from drones.models import DroneCategory from drones import views class DroneCategoryTests(APITestCase): ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Building Versatile Mobile Apps with Python and REST: RESTful Web Services with Django and React

Building Versatile Mobile Apps with Python and REST: RESTful Web Services with Django and React

Art Yudin

Publisher Resources

ISBN: 9781788833929Supplemental Content