1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

* Added PIFs collection Shindo tests

This commit is contained in:
Sergio Rubio 2012-04-02 13:38:33 +02:00
parent c0cd9398e0
commit 606999764e

View file

@ -0,0 +1,22 @@
Shindo.tests('Fog::Compute[:xenserver] | PIFs collection', ['pifs']) do
conn = Fog::Compute[:xenserver]
tests('The pifs collection') do
pifs = conn.pifs.all
test('should not be empty') { !pifs.empty? }
test('should be a kind of Fog::Compute::XenServer::Pifs') { pifs.kind_of? Fog::Compute::XenServer::Pifs }
tests('should be able to reload itself').succeeds { pifs.reload }
tests('should be able to get a model') do
tests('by reference').succeeds {
pifs.get(pifs.first.reference).is_a? Fog::Compute::XenServer::PIF
}
end
end
end