Sha256: a52e0976fec26a4b9e7e22b92d4a1c62ec420e05b1d71c9cab2eb394af5db3f0
Contents?: true
Size: 604 Bytes
Versions: 25
Compression:
Stored size: 604 Bytes
Contents
Shindo.tests('Fog::Compute[:xenserver] | hosts collection', ['xenserver']) do conn = Fog::Compute[:xenserver] tests('The hosts collection') do hosts = conn.hosts.all test('should not be empty') { !hosts.empty? } test('should be a kind of Fog::Compute::XenServer::Hosts') { hosts.kind_of? Fog::Compute::XenServer::Hosts } tests('should be able to reload itself').succeeds { hosts.reload } tests('should be able to get a model') do tests('by reference').succeeds { hosts.get(hosts.first.reference).is_a? Fog::Compute::XenServer::Host } end end end
Version data entries
25 entries across 25 versions & 4 rubygems