Returns a simple logger stub with a *msg* method that takes one argument which gets returned.
()
| 67 | |
| 68 | @pytest.fixture(name="logger") |
| 69 | def _logger(): |
| 70 | """ |
| 71 | Returns a simple logger stub with a *msg* method that takes one argument |
| 72 | which gets returned. |
| 73 | """ |
| 74 | return ReturnLogger() |
| 75 | |
| 76 | |
| 77 | class TestTmpBind: |
nothing calls this directly
no test coverage detected
searching dependent graphs…