Sha256: 7d86de6f82e4d347a7feb07fb7b9693d87a5c8ec7271d82dcc82621d44eb525c

Contents?: true

Size: 575 Bytes

Versions: 79

Compression:

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

79 entries across 77 versions & 6 rubygems

Version Path
fog-aws-3.12.0 tests/models/compute/key_pair_tests.rb
fog-aws-3.11.0 tests/models/compute/key_pair_tests.rb
fog-aws-3.10.0 tests/models/compute/key_pair_tests.rb
fog-aws-3.9.0 tests/models/compute/key_pair_tests.rb
fog-aws-3.8.0 tests/models/compute/key_pair_tests.rb
fog-aws-3.7.0 tests/models/compute/key_pair_tests.rb
fog-aws-3.6.7 tests/models/compute/key_pair_tests.rb
fog-aws-3.6.6 tests/models/compute/key_pair_tests.rb
fog-aws-3.6.5 tests/models/compute/key_pair_tests.rb
fog-aws-3.6.4 tests/models/compute/key_pair_tests.rb
fog-aws-3.6.3 tests/models/compute/key_pair_tests.rb
fog-aws-3.6.2 tests/models/compute/key_pair_tests.rb
fog-aws-3.5.2 tests/models/compute/key_pair_tests.rb
fog-aws-3.5.1 tests/models/compute/key_pair_tests.rb
fog-aws-3.5.0 tests/models/compute/key_pair_tests.rb
fog-aws-3.4.0 tests/models/compute/key_pair_tests.rb
fog-aws-3.3.0 tests/models/compute/key_pair_tests.rb
fog-aws-3.2.0 tests/models/compute/key_pair_tests.rb
fog-aws-3.1.0 tests/models/compute/key_pair_tests.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-aws-2.0.1/tests/models/compute/key_pair_tests.rb