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