test func.next_value().execute()/.scalar() works with connectionless execution.
(self, connection)
| 184 | self._assert_seq_result(connection.scalar(s)) |
| 185 | |
| 186 | def test_execute_next_value(self, connection): |
| 187 | """test func.next_value().execute()/.scalar() works |
| 188 | with connectionless execution.""" |
| 189 | |
| 190 | s = normalize_sequence(config, Sequence("my_sequence")) |
| 191 | self._assert_seq_result(connection.scalar(s.next_value())) |
| 192 | |
| 193 | def test_execute_optional_next_value(self, connection): |
| 194 | """test func.next_value().execute()/.scalar() works |
nothing calls this directly
no test coverage detected