mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
19 lines
414 B
Ruby
19 lines
414 B
Ruby
Shindo.tests('Linode::Compute | datacenter requests', ['linode']) do
|
|
|
|
@datacenters_format = Linode::Compute::Formats::BASIC.merge({
|
|
'DATA' => [{
|
|
'DATACENTERID' => Integer,
|
|
'LOCATION' => String
|
|
}]
|
|
})
|
|
|
|
tests('success') do
|
|
|
|
tests('#avail_datacenters').formats(@datacenters_format) do
|
|
pending if Fog.mocking?
|
|
Linode[:compute].avail_datacenters.body
|
|
end
|
|
|
|
end
|
|
|
|
end
|