(*args, **kwargs)
| 277 | sentinel = object() |
| 278 | |
| 279 | def fake_method(*args, **kwargs): |
| 280 | return sentinel |
| 281 | setattr(algo, name, fake_method) |
| 282 | with ZiplineAPI(algo): |
| 283 | self.assertIs(sentinel, getattr(zipline.api, name)()) |
nothing calls this directly
no outgoing calls
no test coverage detected