Sha256: 2ff7d7a24738e433b9ec2fa78a9745c71db590114c6da0ffeba41f57d1312c79

Contents?: true

Size: 315 Bytes

Versions: 14

Compression:

Stored size: 315 Bytes

Contents

# Use so you can run in mock mode from the command line
#
# FOG_MOCK=true fog

if ENV["FOG_MOCK"] == "true"
  Fog.mock!
end

# if in mocked mode, fill in some fake credentials for us
if Fog.mock?
  Fog.credentials = {
    :libvirt_uri                      => 'qemu://libvirt/system',
  }.merge(Fog.credentials)
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
fog-libvirt-0.8.0 tests/helpers/mock_helper.rb
fog-libvirt-0.7.0 tests/helpers/mock_helper.rb
fog-libvirt-0.6.0 tests/helpers/mock_helper.rb
fog-libvirt-0.5.0 tests/helpers/mock_helper.rb
fog-libvirt-0.4.2 tests/helpers/mock_helper.rb
fog-libvirt-0.4.1 tests/helpers/mock_helper.rb
fog-libvirt-0.4.0 tests/helpers/mock_helper.rb
fog-libvirt-0.3.0 tests/helpers/mock_helper.rb
fog-libvirt-0.2.0 tests/helpers/mock_helper.rb
fog-libvirt-0.1.0 tests/helpers/mock_helper.rb
fog-libvirt-0.0.4 tests/helpers/mock_helper.rb
fog-libvirt-0.0.3 tests/helpers/mock_helper.rb
fog-libvirt-0.0.2 tests/helpers/mock_helper.rb
fog-libvirt-0.0.1 tests/helpers/mock_helper.rb