python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Django REST rest_framework.testsAPIClient post method returns 400 bad request
My tests are failing to create a Designer object but I can manually create with Postman once the server is running. I suspect it's something with the APIClient?
I am using rest_framework_simplejwt and...

veziop
Votes: 0
Answers: 1
Spinning Up a Staging Server for Testing a Django Web-Application
I have been following Harry J.W. Percival's Test-Driven Development with Python. In the chapter of "Testing Deployment Using a Staging Site", I am confused as to the course of action that I ...
Bruce Wayne
Votes: 0
Answers: 2
Duplicate column name when running tests in Django
I have a problem with my code.
My friend helped me to write some code in JavaScript, but to do that part of code, he had to add a field with the "db_column" option.
After he has done that, w...
Manuel Boi
Votes: 0
Answers: 1
Testing Views in django/Python
class UserProfile(APIView):
permission_classes = (IsAuthenticated,)
def get(self, request):
user = self.request.user
user_id = user.id
client_info = ClientInformation.objects.filter(user_i...
Aristoteles Cajiza
Votes: 0
Answers: 0