I'd like to use test.check to generate sorted time series data of the form
[ [timestamp value] [timestamp value] ..]
where the timestamp, value -pairs are in ascending order by the timestamp.
I can easily generate such data in random order with
(gen/tuple timestamp gen/int)
where timestamp
is e.g. (gen/choose 1412664660 1423419720)
How should I go about generating sorted data?