Method: Bacon::Context#should

Defined in:
lib/mac_bacon.rb

#should(*args, &block) ⇒ Object



389
390
391
392
393
394
395
# File 'lib/mac_bacon.rb', line 389

def should(*args, &block)
  if Counter[:depth]==0
    it('should '+args.first,&block)
  else
    super(*args,&block)
  end
end