module MotionSpec::ContextHelper::Should

Public Instance Methods

should(*args, &block) click to toggle source
Calls superclass method
# File lib/motion-spec/context_helper/should.rb, line 4
def should(*args, &block)
  return it('should ' + args.first, &block) if Counter[:depth] == 0

  super(*args, &block)
end