1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/tests/openstack/models/compute/images_tests.rb
Sergio Rubio 8bb3e60aea [openstack|compute] images collection should not return nil for #all
Fog::Compute[:openstack].images.all returns nil without the patch.
The patch should bring the images collection behaviour in-line with
other collections I think.

The added test should expose the issue.
2013-03-04 18:54:18 +01:00

14 lines
259 B
Ruby

Shindo.tests("Fog::Compute[:openstack] | images collection", ['openstack']) do
tests('success') do
tests('#all').succeeds do
fog = Fog::Compute[:openstack]
test 'not nil' do
fog.images.all.is_a? Array
end
end
end
end