I think for convenience we should allow an interna...
# spek
h
I think for convenience we should allow an internal suite context. currently I don't know if
value
should be
1
or
11
within the `test()`s. In case of
1
it would need to - first run the upper part of
suite("define suite)
, - then
suiteSetup()
, - then
test("define foo test")
- and then the lower part of
suite("define suite")
. I personally think the bevavior with
value == 1
is better and
suiteCleanup()
should handle the teardown. But it could be the case, that we need to stick to the
value == 11
behavior, because some lambdas within
suite("define suite")
have to be evaluated first.