Sha256: 612977947c49ac6674499f9e6a1ddb710f9b75da0631cb68bdbbde59d4669049

Contents?: true

Size: 836 Bytes

Versions: 44

Compression:

Stored size: 836 Bytes

Contents

Shindo.tests("Fog::Compute[:digitalocean] | image model", ['digitalocean', 'compute']) do

  service = Fog::Compute[:digitalocean]
  image  = service.images.first

  tests('The image model should') do
    tests('have the action') do
      test('reload') { image.respond_to? 'reload' }
    end
    tests('have attributes') do
      model_attribute_hash = image.attributes
      attributes = [
        :id,
        :name,
        :distribution
      ]
      tests("The image model should respond to") do
        attributes.each do |attribute|
          test("#{attribute}") { image.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

Version Path
fog-1.22.0 tests/digitalocean/models/compute/image_tests.rb
fog-1.21.0 tests/digitalocean/models/compute/image_tests.rb
fog-maestrodev-1.20.0.20140305101839 tests/digitalocean/models/compute/image_tests.rb
fog-maestrodev-1.20.0.20140305101305 tests/digitalocean/models/compute/image_tests.rb
fog-maestrodev-1.19.0.20140212012611 tests/digitalocean/models/compute/image_tests.rb
fog-1.20.0 tests/digitalocean/models/compute/image_tests.rb
fog-maestrodev-1.19.0.20140110004459 tests/digitalocean/models/compute/image_tests.rb
fog-maestrodev-1.19.0.20140110003812 tests/digitalocean/models/compute/image_tests.rb
fog-maestrodev-1.19.0.20140109202555 tests/digitalocean/models/compute/image_tests.rb
fog-maestrodev-1.19.0.20140107192102 tests/digitalocean/models/compute/image_tests.rb
fog-maestrodev-1.19.0.20140107142106 tests/digitalocean/models/compute/image_tests.rb
fog-maestrodev-1.19.0.20131219203941 tests/digitalocean/models/compute/image_tests.rb
fog-maestrodev-1.18.0.20131219193542 tests/digitalocean/models/compute/image_tests.rb
fog-1.19.0 tests/digitalocean/models/compute/image_tests.rb
fog-maestrodev-1.18.0.20131219033443 tests/digitalocean/models/compute/image_tests.rb
fog-maestrodev-1.18.0.20131219032002 tests/digitalocean/models/compute/image_tests.rb
fog-maestrodev-1.18.0.20131219030716 tests/digitalocean/models/compute/image_tests.rb
fog-maestrodev-1.18.0.20131219022322 tests/digitalocean/models/compute/image_tests.rb
fog-maestrodev-1.18.0.20131218202447 tests/digitalocean/models/compute/image_tests.rb
fog-maestrodev-1.18.0.20131209091424 tests/digitalocean/models/compute/image_tests.rb