mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
13 lines
419 B
Ruby
13 lines
419 B
Ruby
Shindo.tests('Compute::VcloudDirector | versions requests', ['vclouddirector']) do
|
|
|
|
@service = Fog::Compute::VcloudDirector.new
|
|
|
|
tests('#get_supported_versions').formats(VcloudDirector::Compute::Schema::SUPPORTED_VERSIONS_TYPE) do
|
|
@versions = @service.get_supported_versions.body
|
|
end
|
|
|
|
tests('API 5.1 is supported').returns(true) do
|
|
!!@versions[:VersionInfo].detect {|i| i[:Version] == '5.1'}
|
|
end
|
|
|
|
end
|