Sha256: b17b6a6e91e763d110f1fbe68b19ed44a2f2c49cd2c03d3c34e3c02952122d4b
Contents?: true
Size: 611 Bytes
Versions: 7
Compression:
Stored size: 611 Bytes
Contents
$LOAD_PATH.unshift File.expand_path('../../lib', __FILE__) support = File.expand_path("../support", __FILE__) Dir["#{support}/**/*.rb"].each { |file| require(file) } ENV['EVENTFUL_ENV'] = 'test' # SimpleCov needs to be required and kicked off *prior* to the invocation of # the core gem itself. # require 'simplecov' SimpleCov.start do add_filter '.gem' add_filter 'bin' end require 'rack/test' require 'faker' require 'search_kit' SearchKit.configure do |config| config.app_env = 'test' config.verbose = false end RSpec.configure do |config| config.include Rack::Test::Methods, type: :api end
Version data entries
7 entries across 7 versions & 1 rubygems