1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/tests/xenserver/models/compute/hosts_tests.rb
2012-04-02 13:25:03 +02:00

22 lines
607 B
Ruby

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