example-of-crud-in-django-w.../tests/libros/test_ping.py
Andros Fenollosa 964053e51c First commit
2021-07-05 15:56:53 +02:00

9 lines
244 B
Python

import json
from django.urls import reverse
def test_ping(client):
url = reverse("ping")
response = client.get(url)
content = json.loads(response.content)
assert response.status_code == 200
assert content["ping"] == "pong!"