Is embedding context blocks inside other context blocks wrong?
For instance:
describe "update_management" do context "with a typical update" do context "when a red flag has been raised" do it "" do end end context "when a yellow flag has been raised" do it "" do end end etc... end end
source share