()
| 399 | |
| 400 | |
| 401 | def test_render_signature_short(): |
| 402 | def short_fun(a=1): pass |
| 403 | sig = oinspect._render_signature( |
| 404 | signature(short_fun), |
| 405 | short_fun.__name__, |
| 406 | ) |
| 407 | nt.assert_equal(sig, 'short_fun(a=1)') |
| 408 | |
| 409 | |
| 410 | def test_render_signature_long(): |
nothing calls this directly
no outgoing calls
no test coverage detected