Sha256: 5fd6cd4d377582633b57ce5af0143b0d053a7e33205a690f19506da39e87edf8

Contents?: true

Size: 825 Bytes

Versions: 14

Compression:

Stored size: 825 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.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/flavor_tests.rb
fog-1.14.0 tests/digitalocean/models/compute/flavor_tests.rb
fog-1.13.0 tests/digitalocean/models/compute/flavor_tests.rb
gapinc-fog-1.12.1.2 tests/digitalocean/models/compute/flavor_tests.rb
gapinc-fog-1.12.1.1 tests/digitalocean/models/compute/flavor_tests.rb
gapinc-fog-1.12.1a tests/digitalocean/models/compute/flavor_tests.rb
gapinc-fog-1.12.1 tests/digitalocean/models/compute/flavor_tests.rb
fog-1.12.1 tests/digitalocean/models/compute/flavor_tests.rb
fog-1.12.0 tests/digitalocean/models/compute/flavor_tests.rb
vagrant-shell-0.2.6 vendor/bundle/gems/fog-1.10.1/tests/digitalocean/models/compute/flavor_tests.rb
vagrant-shell-0.2.5 vendor/bundle/gems/fog-1.10.1/tests/digitalocean/models/compute/flavor_tests.rb
fog-1.11.1 tests/digitalocean/models/compute/flavor_tests.rb
fog-1.11.0 tests/digitalocean/models/compute/flavor_tests.rb
fog-1.10.1 tests/digitalocean/models/compute/flavor_tests.rb