summary refs log tree commit diff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/bacon.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/bacon.rb b/lib/bacon.rb
index 0bede91..93b6880 100644
--- a/lib/bacon.rb
+++ b/lib/bacon.rb
@@ -122,6 +122,7 @@ module Bacon
 
     def it(description, &block)
       return  unless description =~ RestrictName
+      block ||= lambda { should.flunk "not implemented" }
       Counter[:specifications] += 1
       run_requirement description, block
     end