Sha256: 4dcef63c02173283d8b8ea81e99b85dea11817e856ef8e087b2e355665c685e5
Contents?: true
Size: 822 Bytes
Versions: 44
Compression:
Stored size: 822 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.has_key? attribute } end end end end end
Version data entries
44 entries across 44 versions & 3 rubygems