10 lines
238 B
Python
10 lines
238 B
Python
|
import json
|
||
|
from rest_framework import status
|
||
|
from django.test import TestCase, Client
|
||
|
from django.urls import reverse
|
||
|
|
||
|
from ..models import Puppy
|
||
|
from ..serializers import PuppySerializer
|
||
|
|
||
|
# initialize the APIClient app
|
||
|
client = Client()
|