Sha256: ca59d5382bd3accd2584bfa850459028ecfc364999377cf392e208c5936d9163

Contents?: true

Size: 576 Bytes

Versions: 110

Compression:

Stored size: 576 Bytes

Contents

Shindo.tests("Fog::Compute[:aws] | key_pair", ['aws']) do

  model_tests(Fog::Compute[:aws].key_pairs, {:name => 'fogkeyname'}, true)

  after do
    @keypair.destroy
  end

  tests("new keypair") do
    @keypair = Fog::Compute[:aws].key_pairs.create(:name => 'testkey')

    test ("writable?") do
      @keypair.writable? == true
    end
  end

  tests("existing keypair") do
    Fog::Compute[:aws].key_pairs.create(:name => 'testkey')
    @keypair = Fog::Compute[:aws].key_pairs.get('testkey')

    test("writable?") do
      @keypair.writable? == false
    end
  end


end

Version data entries

110 entries across 110 versions & 18 rubygems

Version Path
fog-1.22.0 tests/aws/models/compute/key_pair_tests.rb
fog-1.21.0 tests/aws/models/compute/key_pair_tests.rb
fog-maestrodev-1.20.0.20140305101839 tests/aws/models/compute/key_pair_tests.rb
fog-maestrodev-1.20.0.20140305101305 tests/aws/models/compute/key_pair_tests.rb
fog-maestrodev-1.19.0.20140212012611 tests/aws/models/compute/key_pair_tests.rb
fog-1.20.0 tests/aws/models/compute/key_pair_tests.rb
fog-maestrodev-1.19.0.20140110004459 tests/aws/models/compute/key_pair_tests.rb
fog-maestrodev-1.19.0.20140110003812 tests/aws/models/compute/key_pair_tests.rb
fog-maestrodev-1.19.0.20140109202555 tests/aws/models/compute/key_pair_tests.rb
fog-maestrodev-1.19.0.20140107192102 tests/aws/models/compute/key_pair_tests.rb
fog-maestrodev-1.19.0.20140107142106 tests/aws/models/compute/key_pair_tests.rb
fog-maestrodev-1.19.0.20131219203941 tests/aws/models/compute/key_pair_tests.rb
fog-maestrodev-1.18.0.20131219193542 tests/aws/models/compute/key_pair_tests.rb
fog-1.19.0 tests/aws/models/compute/key_pair_tests.rb
fog-maestrodev-1.18.0.20131219033443 tests/aws/models/compute/key_pair_tests.rb
fog-maestrodev-1.18.0.20131219032002 tests/aws/models/compute/key_pair_tests.rb
fog-maestrodev-1.18.0.20131219030716 tests/aws/models/compute/key_pair_tests.rb
fog-maestrodev-1.18.0.20131219022322 tests/aws/models/compute/key_pair_tests.rb
fog-maestrodev-1.18.0.20131218202447 tests/aws/models/compute/key_pair_tests.rb
fog-maestrodev-1.18.0.20131209091424 tests/aws/models/compute/key_pair_tests.rb