(connection, scope, scope_config)
| 55 | |
| 56 | |
| 57 | def make_context(connection, scope, scope_config): |
| 58 | return Context( |
| 59 | engine=create_engine('sqlite:///:memory:'), |
| 60 | scope=scope, |
| 61 | connection=connection, |
| 62 | scope_config=scope_config |
| 63 | ) |
| 64 | |
| 65 | |
| 66 | def assert_stream_convert(plugin: Union[Plugin, Type[Plugin]], stream_name: str, |
no test coverage detected