(self)
| 96 | shutdown(client) |
| 97 | |
| 98 | def test_describe_object_command(self): |
| 99 | try: |
| 100 | client = create_mssql_cli_client() |
| 101 | result_set_count = 0 |
| 102 | for _ in client.execute_query('\\d {0}'.format(self.function)): |
| 103 | result_set_count += 1 |
| 104 | |
| 105 | self.assertTrue(result_set_count == 2) |
| 106 | finally: |
| 107 | shutdown(client) |
| 108 | |
| 109 | def test_named_queries_commands(self): |
| 110 | try: |
nothing calls this directly
no test coverage detected