mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
14 lines
454 B
Ruby
14 lines
454 B
Ruby
Shindo.tests('Compute::VcloudDirector | session requests', ['vclouddirector']) do
|
|
|
|
@service = Fog::Compute::VcloudDirector.new
|
|
|
|
tests('#post_login_sessions').data_matches_schema(VcloudDirector::Compute::Schema::SESSION_TYPE) do
|
|
pending
|
|
@service.login.body # calls post_login_sessions
|
|
end
|
|
|
|
tests('#get_current_session').data_matches_schema(VcloudDirector::Compute::Schema::SESSION_TYPE) do
|
|
@service.get_current_session.body
|
|
end
|
|
|
|
end
|