From 678ed4d6818e870de46ed91bd084889bed80c16d Mon Sep 17 00:00:00 2001 From: Lin Jen-Shin Date: Mon, 7 Jul 2014 16:19:29 -0700 Subject: The methods in describe should also pass the block for the nested describe block. --- test/spec_bacon.rb | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'test') diff --git a/test/spec_bacon.rb b/test/spec_bacon.rb index 2d1ceef..e3e288e 100644 --- a/test/spec_bacon.rb +++ b/test/spec_bacon.rb @@ -375,6 +375,10 @@ describe "Methods" do 42 end + def the_towels + yield "DON'T PANIC" + end + it "should be accessible in a test" do the_meaning_of_life.should == 42 end @@ -383,6 +387,12 @@ describe "Methods" do it "should be accessible in a test" do the_meaning_of_life.should == 42 end + + it "should pass the block" do + the_towels do |label| + label.should == "DON'T PANIC" + end.should == true + end end end -- cgit 1.4.1