(cls, db, namespace)
| 389 | |
| 390 | @classmethod |
| 391 | def push_engine(cls, db, namespace): |
| 392 | assert _current, "Can't push without a default Config set up" |
| 393 | cls.push( |
| 394 | Config( |
| 395 | db, _current.db_opts, _current.options, _current.file_config |
| 396 | ), |
| 397 | namespace, |
| 398 | ) |
| 399 | |
| 400 | @classmethod |
| 401 | def push(cls, config, namespace): |
no test coverage detected