1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/tests/libvirt/models/compute/interfaces_tests.rb

15 lines
575 B
Ruby
Raw Normal View History

2012-04-04 11:32:09 -04:00
Shindo.tests('Fog::Compute[:libvirt] | interfaces collection', ['libvirt']) do
interfaces = Fog::Compute[:libvirt].interfaces
tests('The interfaces collection') do
test('should not be empty') { not interfaces.empty? }
test('should be a kind of Fog::Compute::Libvirt::Interfaces') { interfaces.kind_of? Fog::Compute::Libvirt::Interfaces }
tests('should be able to reload itself').succeeds { interfaces.reload }
tests('should be able to get a model') do
tests('by instance name').succeeds { interfaces.get interfaces.first.name }
end
end
end