Sha256: d1d7e7259cf0033cad8f3c4f98c0ce5dbda7a79c8a35cfbc006653847d22fc3f
Contents?: true
Size: 606 Bytes
Versions: 17
Compression:
Stored size: 606 Bytes
Contents
# frozen_string_literal: true require 'simplecov' SimpleCov.start require 'rspec' require 'webmock/rspec' # Requires supporting ruby files with custom matchers and macros, etc, # in spec/support/ and its subdirectories. Dir["spec/support/**/*.rb"].each { |filename| load filename } require 'roqua/healthy' Roqua::Healthy.a19_endpoint = "http://10.220.0.101:60101" require 'stringio' LOG_FILE = StringIO.new Roqua.logger = Logger.new(LOG_FILE) RSpec.configure do |config| config.after(:suite) do if ENV["DEBUG"] LOG_FILE.rewind puts "", "Log file: ", LOG_FILE.read end end end
Version data entries
17 entries across 17 versions & 1 rubygems