(self)
| 30 | "__init__" |
| 31 | |
| 32 | def allows_collection_and_config(self): |
| 33 | coll = Collection() |
| 34 | conf = Config() |
| 35 | e = Executor(collection=coll, config=conf) |
| 36 | assert e.collection is coll |
| 37 | assert e.config is conf |
| 38 | |
| 39 | def uses_blank_config_by_default(self): |
| 40 | e = Executor(collection=Collection()) |
nothing calls this directly
no test coverage detected