Method: RSpecStepwise::ClassMethods#around

Defined in:
lib/two-step/stepwise.rb

#around(*args, &block) ⇒ Object



121
122
123
124
125
126
# File 'lib/two-step/stepwise.rb', line 121

def around(*args, &block)
  if args.first == :each
    puts "around :each blocks declared for steps are treated as :all scope"
  end
  super
end