mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
15 lines
481 B
Ruby
15 lines
481 B
Ruby
Shindo.tests('Compute::VcloudDirector | disk requests', ['vclouddirector']) do
|
|
|
|
@service = Fog::Compute::VcloudDirector.new
|
|
|
|
tests('#get_disks_from_query').data_matches_schema(VcloudDirector::Compute::Schema::CONTAINER_TYPE) do
|
|
pending if Fog.mocking?
|
|
@service.get_disks_from_query.body
|
|
end
|
|
|
|
tests('Retrieve non-existent Disk').raises(Excon::Errors::Forbidden) do
|
|
pending if Fog.mocking?
|
|
@service.get_disk('00000000-0000-0000-0000-000000000000')
|
|
end
|
|
|
|
end
|