mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
40 lines
986 B
Ruby
40 lines
986 B
Ruby
Shindo.tests('Fog::Compute[:linode] | linodeplans requests', ['linode']) do
|
|
|
|
@linodeplans_format = Linode::Compute::Formats::BASIC.merge({
|
|
'DATA' => [{
|
|
'AVAIL' => {
|
|
'2' => Integer,
|
|
'3' => Integer,
|
|
'4' => Integer,
|
|
'6' => Integer,
|
|
'7' => Integer,
|
|
'8' => Integer
|
|
},
|
|
'DISK' => Integer,
|
|
'PLANID' => Integer,
|
|
'PRICE' => Float,
|
|
'RAM' => Integer,
|
|
'LABEL' => String,
|
|
'XFER' => Integer
|
|
}]
|
|
})
|
|
|
|
tests('success') do
|
|
|
|
@linodeplan_id = nil
|
|
|
|
tests('#avail_linodeplans').formats(@linodeplans_format) do
|
|
pending if Fog.mocking?
|
|
data = Fog::Compute[:linode].avail_linodeplans.body
|
|
@linodeplan_id = data['DATA'].first['PLANID']
|
|
data
|
|
end
|
|
|
|
tests("#avail_linodeplans(#{@linodeplan_id})").formats(@linodeplans_format) do
|
|
pending if Fog.mocking?
|
|
Fog::Compute[:linode].avail_linodeplans(@linodeplan_id).body
|
|
end
|
|
|
|
end
|
|
|
|
end
|