Sha256: 6718e3f077c640817f609b34015eae0eb20e7b3a0ae03a252301474d923aa256

Contents?: true

Size: 841 Bytes

Versions: 78

Compression:

Stored size: 841 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

78 entries across 78 versions & 11 rubygems

Version Path
fog-1.22.0 tests/xenserver/models/compute/pools_tests.rb
fog-1.21.0 tests/xenserver/models/compute/pools_tests.rb
fog-maestrodev-1.20.0.20140305101839 tests/xenserver/models/compute/pools_tests.rb
fog-maestrodev-1.20.0.20140305101305 tests/xenserver/models/compute/pools_tests.rb
fog-maestrodev-1.19.0.20140212012611 tests/xenserver/models/compute/pools_tests.rb
fog-1.20.0 tests/xenserver/models/compute/pools_tests.rb
fog-maestrodev-1.19.0.20140110004459 tests/xenserver/models/compute/pools_tests.rb
fog-maestrodev-1.19.0.20140110003812 tests/xenserver/models/compute/pools_tests.rb
fog-maestrodev-1.19.0.20140109202555 tests/xenserver/models/compute/pools_tests.rb
fog-maestrodev-1.19.0.20140107192102 tests/xenserver/models/compute/pools_tests.rb
fog-maestrodev-1.19.0.20140107142106 tests/xenserver/models/compute/pools_tests.rb
fog-maestrodev-1.19.0.20131219203941 tests/xenserver/models/compute/pools_tests.rb
fog-maestrodev-1.18.0.20131219193542 tests/xenserver/models/compute/pools_tests.rb
fog-1.19.0 tests/xenserver/models/compute/pools_tests.rb
fog-maestrodev-1.18.0.20131219033443 tests/xenserver/models/compute/pools_tests.rb
fog-maestrodev-1.18.0.20131219032002 tests/xenserver/models/compute/pools_tests.rb
fog-maestrodev-1.18.0.20131219030716 tests/xenserver/models/compute/pools_tests.rb
fog-maestrodev-1.18.0.20131219022322 tests/xenserver/models/compute/pools_tests.rb
fog-maestrodev-1.18.0.20131218202447 tests/xenserver/models/compute/pools_tests.rb
fog-maestrodev-1.18.0.20131209091424 tests/xenserver/models/compute/pools_tests.rb