1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

[glesys|compute] skip flavor tests

This commit is contained in:
geemus 2011-09-27 16:34:33 -05:00
parent c59f36383a
commit 5e0e41a6fb
2 changed files with 1 additions and 9 deletions

View file

@ -9,12 +9,6 @@ module Fog
model Fog::Glesys::Compute::Template
#attribute :platform
#attribute :name
#attribute :os
#attribute :min_mem_size
#attribute :min_disk_size
def all
openvz = connection.template_list.body['response']['templates']['OpenVZ']
xen = connection.template_list.body['response']['templates']['Xen']

View file

@ -1,11 +1,9 @@
for provider, config in compute_providers
next if [:voxel].include?(provider)
next if [:glesys, :voxel].include?(provider)
Shindo.tests("Fog::Compute[:#{provider}] | flavors", [provider]) do
p config[:mocked]
flavors_tests(Fog::Compute[provider], (config[:flavors_attributes] || {}), config[:mocked])
end