Sha256: 5fd6cd4d377582633b57ce5af0143b0d053a7e33205a690f19506da39e87edf8
Contents?: true
Size: 825 Bytes
Versions: 14
Compression:
Stored size: 825 Bytes
Contents
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
Version data entries
14 entries across 14 versions & 3 rubygems