django-ninja-extra
django-ninja-extra copied to clipboard
How to Write or test Post or Put api testcases ?
this is my controller
@api_controller("users/", tags=["Users"])
class UserController(BaseController):
model = get_user_model()
@http_post(
path="",
response={
HTTPStatus.CREATED: UserSchema,
HTTPStatus.INTERNAL_SERVER_ERROR: ErrorSchema,
HTTPStatus.BAD_REQUEST: ErrorSchema,
},
# permissions=[AdminPermission],
summary="Create Center User",
description="This endpoint creates a new center user based on the provided data.",
url_name="create_center_user"
)
def create(self, payload: UserInSchema):
try:
@Elixir-MeetThoriya have you tried this https://eadwincode.github.io/django-ninja-extra/tutorial/testing/
@Elixir-MeetThoriya Can you close this if the issue is resolved?