(self)
| 50 | assert x.__module__ |
| 51 | |
| 52 | def test_get_current_local(self): |
| 53 | x = Proxy(lambda: 10) |
| 54 | object.__setattr__(x, '_Proxy_local', Mock()) |
| 55 | assert x._get_current_object() |
| 56 | |
| 57 | def test_bool(self): |
| 58 |
nothing calls this directly
no test coverage detected