(executor)
| 96 | |
| 97 | @dbtest |
| 98 | def 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 |
nothing calls this directly
no test coverage detected