diff options
-rw-r--r-- | lib/bacon.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bacon.rb b/lib/bacon.rb index 771c6d6..8d5e099 100644 --- a/lib/bacon.rb +++ b/lib/bacon.rb @@ -156,7 +156,7 @@ module Bacon def it(description, &block) return unless description =~ RestrictName - block ||= lambda { should.flunk "not implemented" } + block ||= proc { should.flunk "not implemented" } Counter[:specifications] += 1 run_requirement description, block end |