Sha256: 43a4740c0f0f11c898ed235416046b4687f51cb3c1eb79c10f504aef6d717f75

Contents?: true

Size: 885 Bytes

Versions: 87

Compression:

Stored size: 885 Bytes

Contents

require 'fog/vcloud/models/compute/vdcs'

Shindo.tests("Vcloud::Compute | vdcs", ['vcloud']) do

  Fog::Vcloud::Compute::SUPPORTED_VERSIONS.each do |version|
    tests("api version #{version}") do
      pending if Fog.mocking?

       instance = Fog::Vcloud::Compute::Vdcs.new(
        :connection => Fog::Vcloud::Compute.new(
                          :vcloud_host => 'vcloud.example.com',
                          :vcloud_username => 'username',
                          :vcloud_password => 'password',
                          :vcloud_version => version),
        :href       =>  "https://vcloud.example.com/api#{(version == '1.0') ? '/v1.0' : ''}/org/1"
       )
    
      tests("collection") do
        returns(1) { instance.size }
        returns("https://vcloud.example.com/api#{(version == '1.0') ? '/v1.0' : ''}/vdc/1") { instance.first.href }
      end
    end
  end
end

Version data entries

87 entries across 87 versions & 15 rubygems

Version Path
fog-maestrodev-1.18.0.20131209090811 tests/vcloud/models/compute/vdcs_tests.rb
fog-maestrodev-1.18.0.20131206115947 tests/vcloud/models/compute/vdcs_tests.rb
fog-maestrodev-1.18.0.20131205181604 tests/vcloud/models/compute/vdcs_tests.rb
fog-maestrodev-1.18.0.20131127194823 tests/vcloud/models/compute/vdcs_tests.rb
fog-maestrodev-1.18.0.20131126183714 tests/vcloud/models/compute/vdcs_tests.rb
fog-maestrodev-1.18.0.20131126122111 tests/vcloud/models/compute/vdcs_tests.rb
fog-maestrodev-1.18.0.20131125111730 tests/vcloud/models/compute/vdcs_tests.rb
fog-maestrodev-1.18.0.20131125083406 tests/vcloud/models/compute/vdcs_tests.rb
fog-maestrodev-1.18.0.20131123105121 tests/vcloud/models/compute/vdcs_tests.rb
fog-maestrodev-1.18.0.20131122203507 tests/vcloud/models/compute/vdcs_tests.rb
fog-maestrodev-1.18.0.20131121075022 tests/vcloud/models/compute/vdcs_tests.rb
fog-maestrodev-1.18.0.20131118164830 tests/vcloud/models/compute/vdcs_tests.rb
fog-maestrodev-1.18.0.20131115184302 tests/vcloud/models/compute/vdcs_tests.rb
fog-maestrodev-1.18.0.20131114200144 tests/vcloud/models/compute/vdcs_tests.rb
gapinc-fog-1.12.1.2.1 tests/vcloud/models/compute/vdcs_tests.rb
fog-maestrodev-1.18.0.20131112185232 tests/vcloud/models/compute/vdcs_tests.rb
fog-maestrodev-1.18.0.20131111203459 tests/vcloud/models/compute/vdcs_tests.rb
fog-1.18.0 tests/vcloud/models/compute/vdcs_tests.rb
fog-1.17.0 tests/vcloud/models/compute/vdcs_tests.rb
fog-1.16.0 tests/vcloud/models/compute/vdcs_tests.rb