wasyl
07/17/2019, 7:13 PMDescribeSpec 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