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-0.9.0 tests/models/compute/key_pair_tests.rb
fog-aws-0.8.1 tests/models/compute/key_pair_tests.rb
fog-aws-0.8.0 tests/models/compute/key_pair_tests.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-aws-0.7.5/tests/models/compute/key_pair_tests.rb
fog-aws-0.7.6 tests/models/compute/key_pair_tests.rb
fog-aws-0.7.5 tests/models/compute/key_pair_tests.rb
fog-aws-0.7.4 tests/models/compute/key_pair_tests.rb
fog-aws-0.7.3 tests/models/compute/key_pair_tests.rb
fog-aws-0.7.2 tests/models/compute/key_pair_tests.rb
fog-aws-0.6.0 tests/models/compute/key_pair_tests.rb
fog-aws-0.5.0 tests/models/compute/key_pair_tests.rb
fog-aws-0.4.1 tests/models/compute/key_pair_tests.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/tests/aws/models/compute/key_pair_tests.rb
fog-aws-0.4.0 tests/models/compute/key_pair_tests.rb
fog-aws-0.3.0 tests/models/compute/key_pair_tests.rb
fog-aws-0.2.2 tests/models/compute/key_pair_tests.rb
fog-aws-0.2.0 tests/models/compute/key_pair_tests.rb
fog-aws-0.1.2 tests/models/compute/key_pair_tests.rb
fog-aws-0.1.1 tests/models/compute/key_pair_tests.rb
fog-aws-0.1.0 tests/models/compute/key_pair_tests.rb