Module: Schmetterling::DSL

Defined in:
lib/schmetterling/dsl.rb

Instance Method Summary collapse

Instance Method Details

#After(*args, &block) ⇒ Object



12
13
14
# File 'lib/schmetterling/dsl.rb', line 12

def After(*args, &block)
  Schmetterling::After.new(*args, &block)
end

#Around(*args, &block) ⇒ Object



16
17
18
# File 'lib/schmetterling/dsl.rb', line 16

def Around(*args, &block)
  Schmetterling::Around.new(*args, &block)
end

#Before(*args, &block) ⇒ Object



8
9
10
# File 'lib/schmetterling/dsl.rb', line 8

def Before(*args, &block)
  Schmetterling::Before.new(*args, &block)
end