(id_, name)
| 1887 | users, addresses = user_address_fixture |
| 1888 | |
| 1889 | def ins(id_, name): |
| 1890 | stmt = lambda_stmt(lambda: users.insert()) |
| 1891 | stmt += lambda s: s.values(id=id_, name=name) |
| 1892 | return stmt |
| 1893 | |
| 1894 | with testing.db.begin() as conn: |
| 1895 | conn.execute(ins(12, "foo")) |
nothing calls this directly
no test coverage detected