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

Version Path
roqua-healthy-1.6.0 spec/spec_helper.rb
roqua-healthy-1.5.13 spec/spec_helper.rb
roqua-healthy-1.5.12 spec/spec_helper.rb
roqua-healthy-1.5.11 spec/spec_helper.rb
roqua-healthy-1.5.10 spec/spec_helper.rb
roqua-healthy-1.5.9 spec/spec_helper.rb
roqua-healthy-1.5.8 spec/spec_helper.rb
roqua-healthy-1.5.7 spec/spec_helper.rb
roqua-healthy-1.5.6 spec/spec_helper.rb
roqua-healthy-1.5.5 spec/spec_helper.rb
roqua-healthy-1.5.4 spec/spec_helper.rb
roqua-healthy-1.5.3 spec/spec_helper.rb
roqua-healthy-1.5.2 spec/spec_helper.rb
roqua-healthy-1.5.1 spec/spec_helper.rb
roqua-healthy-1.5.0 spec/spec_helper.rb
roqua-healthy-1.4.3 spec/spec_helper.rb
roqua-healthy-1.4.2 spec/spec_helper.rb