Sha256: 0b412c6d0d6d030aaeba26a7613d3ac92866cea47c4cf5cdca880d3e05803840

Contents?: true

Size: 825 Bytes

Versions: 14

Compression:

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

14 entries across 14 versions & 3 rubygems

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