bbaldino
07/21/2020, 9:49 PMshould
blocks having the same text for: "duplicated test name" (even though they are within different parent scopes. i.e.:
"one" {
"a" {
should("c") {}
}
"b" {
should("c") {}
}
}
sam
07/21/2020, 9:50 PMbbaldino
07/21/2020, 9:50 PMsam
07/21/2020, 9:51 PMbbaldino
07/21/2020, 9:52 PMsam
07/21/2020, 9:52 PMcontext("one") {
context("a") {
should("c") {}
}
context("b") {
should("c") {}
}
}
bbaldino
07/21/2020, 9:53 PMcontext
exists in this version.ShouldSpec
, at least.sam
07/21/2020, 9:53 PMbbaldino
07/21/2020, 9:54 PMsam
07/21/2020, 9:54 PMbbaldino
07/21/2020, 9:54 PM