mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
353b50acfc
Mitigation for Fog::ToHashDocument. This is (still) a short-term fix until we get to real response parsers.
18 lines
648 B
Ruby
18 lines
648 B
Ruby
Shindo.tests('Compute::VcloudDirector | groups requests', ['vclouddirector']) do
|
|
|
|
@service = Fog::Compute::VcloudDirector.new
|
|
|
|
tests('#get_groups_from_query') do
|
|
pending if Fog.mocking?
|
|
%w[idrecords records references].each do |format|
|
|
tests(":format => #{format}") do
|
|
tests('#body').data_matches_schema(VcloudDirector::Compute::Schema::CONTAINER_TYPE) do
|
|
@body = @service.get_groups_from_query(:format => format).body
|
|
end
|
|
key = (format == 'references') ? 'GroupReference' : 'GroupRecord'
|
|
tests("#body.key?(:#{key})").returns(true) { @body.key?(key.to_sym) }
|
|
end
|
|
end
|
|
end
|
|
|
|
end
|