Question.
Currently rspec appears to allow for a two-step test system, like

context "abc"
  it 'should do y' do
  end
end

It might be convenient to have an arbitrary number of nests, like

context "abc"
  it 'should do y' do

    it 'should also be able to do x'
    end

  end
end

Thoughts?
-r
_______________________________________________
rspec-users mailing list
rspec-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/rspec-users

Reply via email to