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. --- lib/bacon.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/bacon.rb b/lib/bacon.rb index 8d5e099..045a910 100644 --- a/lib/bacon.rb +++ b/lib/bacon.rb @@ -218,8 +218,8 @@ module Bacon def describe(*args, &block) context = Bacon::Context.new(args.join(' '), &block) (parent_context = self).methods(false).each {|e| - (class << context; self; end).send(:define_method, e) { |*args2| - parent_context.send(e, *args2) + (class << context; self; end).send(:define_method, e) { |*args2, &block2| + parent_context.send(e, *args2, &block2) } } @before.each { |b| context.before(&b) } -- cgit 1.4.1