MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / test_mode

Method test_mode

test/dialect/oracle/test_dialect.py:1009–1020  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1007 assert key not in kw
1008
1009 def test_mode(self):
1010 self._test_db_opt(
1011 f"oracle+{self.name}://scott:tiger@host/?mode=sYsDBA",
1012 "mode",
1013 self.dbapi.SYSDBA,
1014 )
1015
1016 self._test_db_opt(
1017 f"oracle+{self.name}://scott:tiger@host/?mode=SYSOPER",
1018 "mode",
1019 self.dbapi.SYSOPER,
1020 )
1021
1022 def test_int_mode(self):
1023 self._test_db_opt(

Callers

nothing calls this directly

Calls 1

_test_db_optMethod · 0.95

Tested by

no test coverage detected