global

def after(type=nil, &block)

def after(type=nil, &block)
  include(Module.new do
    define_method(:teardown) do
      begin
        instance_exec(&block)
      ensure
        super()
      end
    end
  end)
end