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

Merge pull request #1769 from maestrodev/fog_mock

[vsphere] Use Fog.mock? as the other providers
This commit is contained in:
Ohad Levy 2013-04-22 05:38:53 -07:00
commit 379190731c

View file

@ -18,7 +18,7 @@ module Fog
raise ArgumentError, "#{required_options.join(', ')} are required" unless options.has_key? param
end
# TODO This is ugly and needs to rethink mocks
unless ENV['FOG_MOCK']
unless Fog.mock?
raise ArgumentError, "#{options["datacenter"]} Doesn't Exist!" unless get_datacenter(options["datacenter"])
raise ArgumentError, "#{options["template_path"]} Doesn't Exist!" unless get_virtual_machine(options["template_path"], options["datacenter"])
end