()
| 1180 | |
| 1181 | def test_lineno_procedure_call(self): |
| 1182 | def call(): |
| 1183 | ( |
| 1184 | print() |
| 1185 | ) |
| 1186 | line1 = call.__code__.co_firstlineno + 1 |
| 1187 | assert line1 not in [line for (_, _, line) in call.__code__.co_lines()] |
| 1188 |
no outgoing calls
no test coverage detected