[Ironruby-core] Spec and calling other examples
Mohammad Azam
lists at ruby-forum.com
Tue Jul 7 18:00:25 EDT 2009
Hi,
When performing BDD there are few occasions when a certain example (BDD
test) depends on other context/example.
Here is one example:
describe Person do
before do
@person = Person.new
@person.Age = 19
end
it "should be able to vote" do
@person.CanVote().should == true
end
describe "19 years old" do
it "should be able to vote" # does not work
end
end
The context of "19 years old" fails since it requires to put the
"voting" context as a shared example which I don't want to do. If we can
just call other contexts within the parent context then it would be
great. I think it would be great if the above example just works.
--
Posted via http://www.ruby-forum.com/.
More information about the Ironruby-core
mailing list