(self)
| 61 | ) |
| 62 | |
| 63 | def test_wrong_number_of_elements(self): |
| 64 | v1 = values( |
| 65 | column("CaseSensitive", Integer), |
| 66 | column("has spaces", String), |
| 67 | name="Spaces and Cases", |
| 68 | ).data([(1, "textA", 99), (2, "textB", 88)]) |
| 69 | |
| 70 | with expect_raises_message( |
| 71 | exc.ArgumentError, |
| 72 | r"Wrong number of elements for 2-tuple: \(1, 'textA', 99\)", |
| 73 | ): |
| 74 | str(v1) |
| 75 | |
| 76 | @testing.fixture |
| 77 | def _auto_proxy_fixture(self): |
nothing calls this directly
no test coverage detected