Then you might just as well kill of `describe` and...
# spek
s
Then you might just as well kill of
describe
and add a section in the documentation or on the first page. For the people coming from RSpec, Jasmine, Cedar or Mocha you can easily adapt Spek to the syntax your used to.
Copy code
inline fun Dsl.describe(description: String, crossinline body: Dsl.() -> Unit) = group("describe $description", body = body)