October 2016
Intermediate to advanced
418 pages
9h 52m
English
Now, we will write the first round of unit tests. Specifically, we will write unit tests related to the game category class-based views: GameCategoryList and GameCategoryDetail. Open the existing games/test.py file and replace the existing code with the following lines that declare many import statements and the GameCategoryTests class. The code file for the sample is included in the restful_python_chapter_04_04 folder, as shown:
from django.test import TestCase
from django.core.urlresolvers import reverse
from django.utils.http import urlencode
from rest_framework import status
from rest_framework.test import APITestCase
from games.models import GameCategory
class GameCategoryTests(APITestCase):
def create_game_category(self, ...