(name)
| 258 | |
| 259 | |
| 260 | def _has_encoding(name): |
| 261 | try: |
| 262 | import codecs |
| 263 | |
| 264 | codecs.lookup(name) |
| 265 | return True |
| 266 | except LookupError: |
| 267 | return False |
| 268 | |
| 269 | |
| 270 | def test_json_key_sorting(app, client): |
nothing calls this directly
no outgoing calls
no test coverage detected