test func.next_value().execute()/.scalar() works with connectionless execution.
(self, connection)
| 178 | self._assert_seq_result(connection.scalar(s)) |
| 179 | |
| 180 | def test_execute_next_value(self, connection): |
| 181 | """test func.next_value().execute()/.scalar() works |
| 182 | with connectionless execution.""" |
| 183 | |
| 184 | s = normalize_sequence(config, Sequence("my_sequence")) |
| 185 | self._assert_seq_result(connection.scalar(s.next_value())) |
| 186 | |
| 187 | def test_execute_optional_next_value(self, connection): |
| 188 | """test func.next_value().execute()/.scalar() works |
nothing calls this directly
no test coverage detected