ocaml-containers/tests/helpers.ml
2014-07-11 22:39:40 +02:00

12 lines
256 B
OCaml

(** Some helpers for tests *)
let print_int_list l =
let b = Buffer.create 20 in
CCList.pp CCInt.pp b l;
Buffer.contents b
let print_int_int_list l =
let b = Buffer.create 20 in
CCList.pp (CCPair.pp CCInt.pp CCInt.pp) b l;
Buffer.contents b