MCPcopy Index your code
hub / github.com/dbcli/pgcli / test_not_is_special

Function test_not_is_special

tests/test_pgexecute.py:267–273  ·  view source on GitHub ↗

is_special is set to false for database queries.

(executor, pgspecial)

Source from the content-addressed store, hash-verified

265
266@dbtest
267def test_not_is_special(executor, pgspecial):
268 """is_special is set to false for database queries."""
269 query = "select 1"
270 result = list(executor.run(query, pgspecial=pgspecial))
271 success, is_special = result[0][5:]
272 assert success is True
273 assert is_special is False
274
275
276@dbtest

Callers

nothing calls this directly

Calls 1

runMethod · 0.45

Tested by

no test coverage detected