(self, value)
| 140 | |
| 141 | @testing.combinations(True, {}, {"driver_name": "custom-driver-name"}) |
| 142 | def test_thick_mode(self, value): |
| 143 | from ._oracledb_mode import run_thick_mode |
| 144 | |
| 145 | mode, is_thin = self._run_in_process( |
| 146 | run_thick_mode, {"thick_mode": value} |
| 147 | ) |
| 148 | is_false(is_thin) |
| 149 | if isinstance(value, dict) and value.get("driver_name"): |
| 150 | eq_(mode.strip(), "custom-driver-name") |
| 151 | |
| 152 | |
| 153 | class DialectWBackendTest(fixtures.TestBase): |
nothing calls this directly
no test coverage detected