(self, scalar_strings, connection)
| 1181 | eq_(result, ["some string"] * 5) |
| 1182 | |
| 1183 | def test_scalar_strings(self, scalar_strings, connection): |
| 1184 | fn = func.scalar_strings(5, "some string") |
| 1185 | result = connection.execute(select(fn.column_valued())).scalars().all() |
| 1186 | eq_(result, ["some string"] * 5) |
| 1187 | |
| 1188 | def test_two_strings_control(self, two_strings, connection): |
| 1189 | result = connection.exec_driver_sql( |
nothing calls this directly
no test coverage detected