Is there any particular reason why in `DescribeSpe...
# kotlintest
w
Is there any particular reason why in
DescribeSpec
the
describe
blocks can’t be nested? I.e. I can’t write
describe("Foo") { describe("Bar") { /* ... */ } }
In RSpec
context
is an alias of
describe
, and the difference is purely contextual (
describe
groups functionality,
context
groups the same state). It would make sense to be allowed to do the same thing in KT