| 33 | |
| 34 | @attr.s |
| 35 | class FakeConfig: |
| 36 | basetemp = attr.ib() |
| 37 | |
| 38 | @property |
| 39 | def trace(self): |
| 40 | return self |
| 41 | |
| 42 | def get(self, key): |
| 43 | return lambda *k: None |
| 44 | |
| 45 | @property |
| 46 | def option(self): |
| 47 | return self |
| 48 | |
| 49 | |
| 50 | class TestTmpPathHandler: |
no outgoing calls