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:
parent
c0cd9398e0
commit
606999764e
1 changed files with 22 additions and 0 deletions
22
tests/xenserver/models/compute/pifs_tests.rb
Normal file
22
tests/xenserver/models/compute/pifs_tests.rb
Normal 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
|
Loading…
Add table
Reference in a new issue