Pytest fixture which returns interactive mssql-cli instance and cleans up on teardown.
()
| 19 | @staticmethod |
| 20 | @pytest.fixture(scope='class') |
| 21 | def mssqlcli(): |
| 22 | """ |
| 23 | Pytest fixture which returns interactive mssql-cli instance |
| 24 | and cleans up on teardown. |
| 25 | """ |
| 26 | mssqlcli = create_mssql_cli(interactive_mode=True) |
| 27 | yield mssqlcli |
| 28 | shutdown(mssqlcli) |
| 29 | |
| 30 | |
| 31 | class TestInteractiveModeQueries(TestInteractiveMode): |
nothing calls this directly
no test coverage detected