Open lentinj opened 9 months ago
ok_group("moo", { ok(..) }) will result in all tests clumped together in CRAN output, instead of per-line output.
ok_group("moo", { ok(..) })
As a result it might be better to write ok_group("moo") ; ok(...).
ok_group("moo") ; ok(...)
ok_group("moo", { ok(..) })
will result in all tests clumped together in CRAN output, instead of per-line output.As a result it might be better to write
ok_group("moo") ; ok(...)
.