Return the 'production' DB name to get the test DB creation machinery to work. This isn't a great deal in this case because DB names as handled by Django don't have real counterparts in Oracle.
(self)
| 453 | return self._test_settings_get("ORACLE_MANAGED_FILES", default=False) |
| 454 | |
| 455 | def _get_test_db_name(self): |
| 456 | """ |
| 457 | Return the 'production' DB name to get the test DB creation machinery |
| 458 | to work. This isn't a great deal in this case because DB names as |
| 459 | handled by Django don't have real counterparts in Oracle. |
| 460 | """ |
| 461 | return self.connection.settings_dict["NAME"] |
| 462 | |
| 463 | def test_db_signature(self): |
| 464 | settings_dict = self.connection.settings_dict |
no outgoing calls