mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
f11926a5a2
DigitalOcean Compute Service Provider. See https://www.digitalocean.com/api
30 lines
825 B
Ruby
30 lines
825 B
Ruby
Shindo.tests("Fog::Compute[:digitalocean] | flavor model", ['digitalocean', 'compute']) do
|
|
|
|
service = Fog::Compute[:digitalocean]
|
|
flavor = service.flavors.first
|
|
|
|
tests('The flavor model should') do
|
|
tests('have the action') do
|
|
test('reload') { flavor.respond_to? 'reload' }
|
|
end
|
|
tests('have attributes') do
|
|
model_attribute_hash = flavor.attributes
|
|
attributes = [
|
|
:id,
|
|
:name,
|
|
]
|
|
tests("The flavor model should respond to") do
|
|
attributes.each do |attribute|
|
|
test("#{attribute}") { flavor.respond_to? attribute }
|
|
end
|
|
end
|
|
tests("The attributes hash should have key") do
|
|
attributes.each do |attribute|
|
|
test("#{attribute}") { model_attribute_hash.has_key? attribute }
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
end
|
|
|