()
| 142 | |
| 143 | @staticmethod |
| 144 | def test_missing_rc_dir(): |
| 145 | try: |
| 146 | rcfilePath = getTempPath('subdir', 'rcfile') |
| 147 | mssqlcli = create_mssql_cli(mssqlclirc_file=rcfilePath) |
| 148 | assert os.path.exists(rcfilePath) |
| 149 | finally: |
| 150 | mssqlcli.sqltoolsclient.shutdown() |
| 151 | |
| 152 | @staticmethod |
| 153 | def run_and_return_string_from_formatter(mssql_cli, sql, join=False, expanded=False): |
nothing calls this directly
no test coverage detected