(self, no_tuple_one_fixture, get)
| 1391 | argnames="get", |
| 1392 | ) |
| 1393 | def test_scalar_mode_scalar_one(self, no_tuple_one_fixture, get): |
| 1394 | metadata = result.SimpleResultMetaData(["a", "b", "c"]) |
| 1395 | |
| 1396 | r = result.ChunkedIteratorResult( |
| 1397 | metadata, no_tuple_one_fixture, source_supports_scalars=True |
| 1398 | ) |
| 1399 | |
| 1400 | eq_(get(r), 1) |