hastebrot
11/05/2015, 10:17 PMclass FooSpec : Spek() { init {
given("") {
beforeOn { print("1") }
on("") {
print("2")
it("") {
print("3a")
}
it("") {
print("3b")
}
}
}
}}
this outputs "123a3b" (and something with teamcity[...]), but should output "123a123b" (or "123b123a" 😃).