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/image/image_tests.rb
Philip Mark Deazeta be19ce2073 [openstack|image] Image Model Updates
-added dynamic finders
-added queries for public and private images
-added function to show image metadata
2012-04-30 10:35:00 +08:00

35 lines
802 B
Ruby

Shindo.tests("Fog::Image[:openstack] | image", ['openstack']) do
tests('success') do
tests('#create').succeeds do
@instance = Fog::Image[:openstack].images.create(:name => 'test image')
!@instance.id.nil?
end
tests('#update').succeeds do
@instance.name = 'edit test image'
@instance.update
@instance.name == 'edit test image'
end
tests('#get image metadata').succeeds do
@instance.metadata
end
tests('#add member').succeeds do
@instance.add_member(@instance.owner)
end
tests('#show members').succeeds do
@instance.members
end
tests('#remove member').succeeds do
@instance.remove_member(@instance.owner)
end
tests('#destroy').succeeds do
@instance.destroy == true
end
end
end