Sha256: f0963960d79c4552947d692ee68ca90e123841c12f6177f5b41765bb62ea24fa

Contents?: true

Size: 608 Bytes

Versions: 17

Compression:

Stored size: 608 Bytes

Contents

ENV['FOG_RC']         = ENV['FOG_RC'] || File.expand_path('../.fog', __FILE__)
ENV['FOG_CREDENTIAL'] = ENV['FOG_CREDENTIAL'] || 'default'

require 'fog/libvirt'

Excon.defaults.merge!(:debug_request => true, :debug_response => true)

require File.expand_path(File.join(File.dirname(__FILE__), 'helpers', 'mock_helper'))

# This overrides the default 600 seconds timeout during live test runs
if Fog.mocking?
  FOG_TESTING_TIMEOUT = ENV['FOG_TEST_TIMEOUT'] || 2000
  Fog.timeout = 2000
  Fog::Logger.warning "Setting default fog timeout to #{Fog.timeout} seconds"
else
  FOG_TESTING_TIMEOUT = Fog.timeout
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
fog-libvirt-0.13.2 tests/helper.rb
fog-libvirt-0.13.1 tests/helper.rb
fog-libvirt-0.13.0 tests/helper.rb
fog-libvirt-0.8.0 tests/helper.rb
fog-libvirt-0.7.0 tests/helper.rb
fog-libvirt-0.6.0 tests/helper.rb
fog-libvirt-0.5.0 tests/helper.rb
fog-libvirt-0.4.2 tests/helper.rb
fog-libvirt-0.4.1 tests/helper.rb
fog-libvirt-0.4.0 tests/helper.rb
fog-libvirt-0.3.0 tests/helper.rb
fog-libvirt-0.2.0 tests/helper.rb
fog-libvirt-0.1.0 tests/helper.rb
fog-libvirt-0.0.4 tests/helper.rb
fog-libvirt-0.0.3 tests/helper.rb
fog-libvirt-0.0.2 tests/helper.rb
fog-libvirt-0.0.1 tests/helper.rb