Sha256: 270f46a7043d144882084250c095415f408e57844132841ce2cef57afec31ed8

Contents?: true

Size: 757 Bytes

Versions: 113

Compression:

Stored size: 757 Bytes

Contents

Shindo.tests("Fog::Compute[:openstack] | tenants", ['openstack']) do
  @instance = Fog::Identity[:openstack].tenants.create(:name => 'test')

  tests('success') do
    tests('#find_by_id').succeeds do
      tenant = Fog::Identity[:openstack].tenants.find_by_id(@instance.id)
      tenant.id == @instance.id
    end

    tests('#destroy').succeeds do
      Fog::Identity[:openstack].tenants.destroy(@instance.id)
    end
  end

  tests('fails') do
    pending if Fog.mocking?

    tests('#find_by_id').raises(Fog::Identity::OpenStack::NotFound) do
      Fog::Identity[:openstack].tenants.find_by_id('fake')
    end

    tests('#destroy').raises(Fog::Identity::OpenStack::NotFound) do
      Fog::Identity[:openstack].tenants.destroy('fake')
    end
  end
end

Version data entries

113 entries across 113 versions & 15 rubygems

Version Path
fog-1.20.0 tests/openstack/models/identity/tenants_tests.rb
fog-maestrodev-1.19.0.20140110004459 tests/openstack/models/identity/tenants_tests.rb
fog-maestrodev-1.19.0.20140110003812 tests/openstack/models/identity/tenants_tests.rb
fog-maestrodev-1.19.0.20140109202555 tests/openstack/models/identity/tenants_tests.rb
fog-maestrodev-1.19.0.20140107192102 tests/openstack/models/identity/tenants_tests.rb
fog-maestrodev-1.19.0.20140107142106 tests/openstack/models/identity/tenants_tests.rb
fog-maestrodev-1.19.0.20131219203941 tests/openstack/models/identity/tenants_tests.rb
fog-maestrodev-1.18.0.20131219193542 tests/openstack/models/identity/tenants_tests.rb
fog-1.19.0 tests/openstack/models/identity/tenants_tests.rb
fog-maestrodev-1.18.0.20131219033443 tests/openstack/models/identity/tenants_tests.rb
fog-maestrodev-1.18.0.20131219032002 tests/openstack/models/identity/tenants_tests.rb
fog-maestrodev-1.18.0.20131219030716 tests/openstack/models/identity/tenants_tests.rb
fog-maestrodev-1.18.0.20131219022322 tests/openstack/models/identity/tenants_tests.rb
fog-maestrodev-1.18.0.20131218202447 tests/openstack/models/identity/tenants_tests.rb
fog-maestrodev-1.18.0.20131209091424 tests/openstack/models/identity/tenants_tests.rb
fog-maestrodev-1.18.0.20131209090811 tests/openstack/models/identity/tenants_tests.rb
fog-maestrodev-1.18.0.20131206115947 tests/openstack/models/identity/tenants_tests.rb
fog-maestrodev-1.18.0.20131205181604 tests/openstack/models/identity/tenants_tests.rb
fog-maestrodev-1.18.0.20131127194823 tests/openstack/models/identity/tenants_tests.rb
fog-maestrodev-1.18.0.20131126183714 tests/openstack/models/identity/tenants_tests.rb