(self, connection)
| 680 | ) |
| 681 | |
| 682 | def test_empty_insert_nopk2(self, connection): |
| 683 | self._test_empty_insert( |
| 684 | connection, |
| 685 | Table( |
| 686 | "f", |
| 687 | MetaData(), |
| 688 | Column("x", Integer), |
| 689 | Column("y", Integer), |
| 690 | ), |
| 691 | ) |
| 692 | |
| 693 | @testing.provide_metadata |
| 694 | def test_inserts_with_spaces(self, connection): |
nothing calls this directly
no test coverage detected