mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
* Added VIF collection Shindo tests
This commit is contained in:
parent
641ebd3fcd
commit
c0cd9398e0
1 changed files with 22 additions and 0 deletions
22
tests/xenserver/models/compute/vifs_tests.rb
Normal file
22
tests/xenserver/models/compute/vifs_tests.rb
Normal file
|
@ -0,0 +1,22 @@
|
|||
Shindo.tests('Fog::Compute[:xenserver] | VIFs collection', ['vifs']) do
|
||||
|
||||
conn = Fog::Compute[:xenserver]
|
||||
|
||||
tests('The vifs collection') do
|
||||
vifs = conn.vifs.all
|
||||
|
||||
test('should not be empty') { !vifs.empty? }
|
||||
|
||||
test('should be a kind of Fog::Compute::XenServer::Vifs') { vifs.kind_of? Fog::Compute::XenServer::Vifs }
|
||||
|
||||
tests('should be able to reload itself').succeeds { vifs.reload }
|
||||
|
||||
tests('should be able to get a model') do
|
||||
tests('by reference').succeeds {
|
||||
vifs.get(vifs.first.reference).is_a? Fog::Compute::XenServer::VIF
|
||||
}
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
end
|
Loading…
Add table
Reference in a new issue