Sha256: b6df52ee52240ac46554214a50bd9e1bb3520df360f22dac891890cf07857a47
Contents?: true
Size: 817 Bytes
Versions: 29
Compression:
Stored size: 817 Bytes
Contents
Shindo.tests("Fog::Compute[:digitalocean] | region model", ['digitalocean', 'compute']) do service = Fog::Compute[:digitalocean] region = service.regions.first tests('The region model should') do tests('have the action') do test('reload') { region.respond_to? 'reload' } end tests('have attributes') do model_attribute_hash = region.attributes attributes = [ :id, :name, ] tests("The region model should respond to") do attributes.each do |attribute| test("#{attribute}") { region.respond_to? attribute } end end tests("The attributes hash should have key") do attributes.each do |attribute| test("#{attribute}") { model_attribute_hash.key? attribute } end end end end end
Version data entries
29 entries across 29 versions & 4 rubygems