Method: Dfect#after
- Defined in:
- lib/dfect/spec.rb
#after(what, &block) ⇒ Object
21 22 23 24 25 26 27 28 29 30 |
# File 'lib/dfect/spec.rb', line 21 def after what, &block meth = case what when :each then :> when :all then :>> else raise ArgumentError, what end send meth, &block end |