MCPcopy Index your code
hub / github.com/dbcli/mycli / test_bools

Function test_bools

test/pytests/test_sqlexecute.py:98–103  ·  view source on GitHub ↗
(executor)

Source from the content-addressed store, hash-verified

96
97@dbtest
98def test_bools(executor):
99 run(executor, """create table test(a boolean)""")
100 run(executor, """insert into test values(True)""")
101 results = run(executor, """select * from test""")
102
103 assert_result_equal(results, header=["a"], rows=[(1,)])
104
105
106@dbtest

Callers

nothing calls this directly

Calls 2

runFunction · 0.90
assert_result_equalFunction · 0.85

Tested by

no test coverage detected