Sha256: 5da3af76ee999eaf0deba5339acc9d62dd51dd40a2f879660f855693b86783fd

Contents?: true

Size: 839 Bytes

Versions: 14

Compression:

Stored size: 839 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

14 entries across 14 versions & 3 rubygems

Version Path
gapinc-fog-1.12.1.2.1 tests/digitalocean/models/compute/image_tests.rb
fog-1.14.0 tests/digitalocean/models/compute/image_tests.rb
fog-1.13.0 tests/digitalocean/models/compute/image_tests.rb
gapinc-fog-1.12.1.2 tests/digitalocean/models/compute/image_tests.rb
gapinc-fog-1.12.1.1 tests/digitalocean/models/compute/image_tests.rb
gapinc-fog-1.12.1a tests/digitalocean/models/compute/image_tests.rb
gapinc-fog-1.12.1 tests/digitalocean/models/compute/image_tests.rb
fog-1.12.1 tests/digitalocean/models/compute/image_tests.rb
fog-1.12.0 tests/digitalocean/models/compute/image_tests.rb
vagrant-shell-0.2.6 vendor/bundle/gems/fog-1.10.1/tests/digitalocean/models/compute/image_tests.rb
vagrant-shell-0.2.5 vendor/bundle/gems/fog-1.10.1/tests/digitalocean/models/compute/image_tests.rb
fog-1.11.1 tests/digitalocean/models/compute/image_tests.rb
fog-1.11.0 tests/digitalocean/models/compute/image_tests.rb
fog-1.10.1 tests/digitalocean/models/compute/image_tests.rb