Makes changes options starting at sequence 0, with a new changes context
(t testing.TB)
| 185 | |
| 186 | // Makes changes options starting at sequence 0, with a new changes context |
| 187 | func getChangesOptionsWithZeroSeq(t testing.TB) ChangesOptions { |
| 188 | return ChangesOptions{Since: SequenceID{Seq: 0}, ChangesCtx: base.TestCtx(t)} |
| 189 | } |
| 190 | |
| 191 | // Makes changes options with a since value of seq and a new changes context |
| 192 | func getChangesOptionsWithSeq(t *testing.T, seq SequenceID) ChangesOptions { |
no test coverage detected