(transport)
| 112 | |
| 113 | |
| 114 | def test_capture_crash_without_run_state(transport): |
| 115 | init_with_transport(transport) |
| 116 | |
| 117 | assert capture_crash(make_exc_info(ValueError("boom")), None, make_args()) |
| 118 | sentry_sdk.flush(timeout=2) |
| 119 | |
| 120 | assert len(transport.events) == 1 |
| 121 | assert "render_id" not in transport.events[0]["tags"] |
| 122 | |
| 123 | |
| 124 | def test_local_variables_are_scrubbed(transport): |
nothing calls this directly
no test coverage detected