Sha256: 9f2d45d7a48977dbdfa0df35cf9a1717c95780afa6e182c11d28a924120d75c4

Contents?: true

Size: 817 Bytes

Versions: 29

Compression:

Stored size: 817 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.key? attribute }
        end
      end
    end
  end

end

Version data entries

29 entries across 29 versions & 4 rubygems

Version Path
fog-1.37.0 tests/digitalocean/models/compute/flavor_tests.rb
fog-1.36.0 tests/digitalocean/models/compute/flavor_tests.rb
fog-1.35.0 tests/digitalocean/models/compute/flavor_tests.rb
fog-2.0.0.pre.0 tests/digitalocean/models/compute/flavor_tests.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-1.32.0/tests/digitalocean/models/compute/flavor_tests.rb
fog-1.34.0 tests/digitalocean/models/compute/flavor_tests.rb
fog-1.33.0 tests/digitalocean/models/compute/flavor_tests.rb
fog-1.32.0 tests/digitalocean/models/compute/flavor_tests.rb
fog-1.31.0 tests/digitalocean/models/compute/flavor_tests.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/tests/digitalocean/models/compute/flavor_tests.rb
fog-1.30.0 tests/digitalocean/models/compute/flavor_tests.rb
fog-1.29.0 tests/digitalocean/models/compute/flavor_tests.rb
fog-1.28.0 tests/digitalocean/models/compute/flavor_tests.rb
fog-1.27.0 tests/digitalocean/models/compute/flavor_tests.rb
fog-1.26.0 tests/digitalocean/models/compute/flavor_tests.rb
fog-1.25.0 tests/digitalocean/models/compute/flavor_tests.rb
nsidc-fog-1.24.1 tests/digitalocean/models/compute/flavor_tests.rb
fog-1.24.0 tests/digitalocean/models/compute/flavor_tests.rb
ns-fog-1.22.11 tests/digitalocean/models/compute/flavor_tests.rb
ns-fog-1.22.10 tests/digitalocean/models/compute/flavor_tests.rb