(self)
| 313 | ) |
| 314 | |
| 315 | def test_json_script_without_id(self): |
| 316 | self.assertHTMLEqual( |
| 317 | json_script({"key": "value"}), |
| 318 | '<script type="application/json">{"key": "value"}</script>', |
| 319 | ) |
| 320 | |
| 321 | def test_smart_urlquote(self): |
| 322 | items = ( |
nothing calls this directly
no test coverage detected