describe "one" do
describe "two" do
describe "three" do
it "does stuff" do
end
end
end
end
#===>
three
- does stuff
|
describe "one" do
describe "two" do
describe "three" do
it "does stuff" do
end
end
end
end
#===>
three
- does stuff
|