module ApiHelper

Public Class Methods

included(mod) click to toggle source
# File lib/hippo/spec_helper.rb, line 63
def ApiHelper.included(mod)
    mod.around(:each) do |example|
        begin
            example.run
        end
    end
end