We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7de1142 commit 105a5eaCopy full SHA for 105a5ea
samples/01-carapp/carapp/apps/car/tests/test_routers.py
@@ -45,6 +45,7 @@ def test_get_cars(self, mock_get_all):
45
def test_get_car_html_with_render(self, mock_get_all):
46
res = self.client.get("/car-as-router/html/outside")
47
assert res.status_code == 200
48
+ print(res.content)
49
assert (
50
res.content
51
== b'<!DOCTYPE html>\n<html lang="en">\n<head>\n <meta charset="UTF-8">\n <title>Index.html</title>\n</head>\n<body>\n \n <p>Mercedes</p>\n \n</body>\n</html>'
0 commit comments