summary refs log tree commit diff
path: root/lib/bacon.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bacon.rb')
-rw-r--r--lib/bacon.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/bacon.rb b/lib/bacon.rb
index ad4df44..47dc31e 100644
--- a/lib/bacon.rb
+++ b/lib/bacon.rb
@@ -210,6 +210,9 @@ 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) {|*args| parent_context.send(e, *args)}
+      }
       @before.each { |b| context.before(&b) }
       @after.each { |b| context.after(&b) }
       context.run