Sha256: 275f34b45e9108459958cae734cd11cc3310b2dbf2d9b45ab813535d9f70c732

Contents?: true

Size: 836 Bytes

Versions: 25

Compression:

Stored size: 836 Bytes

Contents

Shindo.tests('Fog::Compute[:xenserver] | Pools collection', ['xenserver']) do

  conn = Fog::Compute[:xenserver]

  tests('The pools collection') do
    pools = conn.pools.all

    test('should not be empty') { !pools.empty? }

    test('should be a kind of Fog::Compute::XenServer::Pools') { pools.kind_of? Fog::Compute::XenServer::Pools }

    tests('should be an array of Fog::Compute::XenServer::Pool') do
      pools.each do |p|
        test("#{p.uuid} is a Fog::Compute::XenServer::Pool") {
          p.is_a? Fog::Compute::XenServer::Pool
        }
      end
    end

    tests('should be able to reload itself').succeeds { pools.reload }

    tests('should be able to get a model') do
      tests('by reference').succeeds {
        pools.get(pools.first.reference).is_a? Fog::Compute::XenServer::Pool
      }
    end

  end

end

Version data entries

25 entries across 25 versions & 4 rubygems

Version Path
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-1.32.0/tests/xenserver/models/compute/pools_tests.rb
fog-1.34.0 tests/xenserver/models/compute/pools_tests.rb
fog-1.33.0 tests/xenserver/models/compute/pools_tests.rb
fog-1.32.0 tests/xenserver/models/compute/pools_tests.rb
fog-1.31.0 tests/xenserver/models/compute/pools_tests.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/tests/xenserver/models/compute/pools_tests.rb
fog-1.30.0 tests/xenserver/models/compute/pools_tests.rb
fog-1.29.0 tests/xenserver/models/compute/pools_tests.rb
fog-1.28.0 tests/xenserver/models/compute/pools_tests.rb
fog-1.27.0 tests/xenserver/models/compute/pools_tests.rb
fog-1.26.0 tests/xenserver/models/compute/pools_tests.rb
fog-1.25.0 tests/xenserver/models/compute/pools_tests.rb
nsidc-fog-1.24.1 tests/xenserver/models/compute/pools_tests.rb
fog-1.24.0 tests/xenserver/models/compute/pools_tests.rb
ns-fog-1.22.11 tests/xenserver/models/compute/pools_tests.rb
ns-fog-1.22.10 tests/xenserver/models/compute/pools_tests.rb
ns-fog-1.22.9 tests/xenserver/models/compute/pools_tests.rb
ns-fog-1.22.8 tests/xenserver/models/compute/pools_tests.rb
ns-fog-1.22.7 tests/xenserver/models/compute/pools_tests.rb
ns-fog-1.22.6 tests/xenserver/models/compute/pools_tests.rb