()
| 441 | |
| 442 | |
| 443 | def test_funcname_long(): |
| 444 | def a_long_function_name_11111111111111111111111111111111111111111111111(): |
| 445 | pass |
| 446 | |
| 447 | result = funcname( |
| 448 | a_long_function_name_11111111111111111111111111111111111111111111111 |
| 449 | ) |
| 450 | assert "a_long_function_name" in result |
| 451 | assert len(result) < 60 |
| 452 | |
| 453 | |
| 454 | def test_funcname_toolz(): |
nothing calls this directly
no test coverage detected