(self)
| 78 | ) |
| 79 | |
| 80 | def test_bad_args(self): |
| 81 | with expect_raises(ValueError): |
| 82 | insert(self.tables.users).on_conflict_do_update() |
| 83 | |
| 84 | def test_on_conflict_do_no_call_twice(self): |
| 85 | users = self.tables.users |
nothing calls this directly
no test coverage detected