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/consoles_test.rb
2013-07-30 14:13:45 -03:00

19 lines
632 B
Ruby

Shindo.tests('Fog::Compute[:xenserver] | console collection', ['xenserver']) do
conn = Fog::Compute[:xenserver]
tests('The console collection') do
consoles = conn.consoles.all
test('should not be empty') { !consoles.empty? }
test('should be a kind of Fog::Compute::XenServer::Consoles') { consoles.kind_of? Fog::Compute::XenServer::Consoles }
tests('should be able to reload itself').succeeds { consoles.reload }
tests('should be able to get a model') do
tests('by reference').succeeds {
consoles.get(hosts.first.reference).is_a? Fog::Compute::XenServer::Console
}
end
end
end