(context, *args, **kwargs)
| 11 | |
| 12 | @hug.delete_context(apply_globally=True) |
| 13 | def delete_context(context, *args, **kwargs): |
| 14 | assert context == custom_context |
| 15 | custom_context["delete"] += 1 |
| 16 | |
| 17 | @hug.get(api=hug_api) |
| 18 | def made_up_hello(): |
nothing calls this directly
no outgoing calls
no test coverage detected