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/pbds_tests.rb
2012-04-02 13:25:03 +02:00

22 lines
595 B
Ruby

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