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.0.8 tests/models/compute/key_pair_tests.rb
fog-aws-0.0.7 tests/models/compute/key_pair_tests.rb
fog-aws-0.0.6 tests/models/compute/key_pair_tests.rb
fog-aws-0.0.5 tests/models/compute/key_pair_tests.rb
fog-1.26.0 tests/aws/models/compute/key_pair_tests.rb
fog-1.25.0 tests/aws/models/compute/key_pair_tests.rb
nsidc-fog-1.24.1 tests/aws/models/compute/key_pair_tests.rb
fog-1.24.0 tests/aws/models/compute/key_pair_tests.rb
ns-fog-1.22.11 tests/aws/models/compute/key_pair_tests.rb
ns-fog-1.22.10 tests/aws/models/compute/key_pair_tests.rb
ns-fog-1.22.9 tests/aws/models/compute/key_pair_tests.rb
ns-fog-1.22.8 tests/aws/models/compute/key_pair_tests.rb
ns-fog-1.22.7 tests/aws/models/compute/key_pair_tests.rb
ns-fog-1.22.6 tests/aws/models/compute/key_pair_tests.rb
fog-1.23.0 tests/aws/models/compute/key_pair_tests.rb
ns-fog-1.22.4 tests/aws/models/compute/key_pair_tests.rb
ns-fog-1.22.3 tests/aws/models/compute/key_pair_tests.rb
ns-fog-1.22.2 tests/aws/models/compute/key_pair_tests.rb
fog-1.22.1 tests/aws/models/compute/key_pair_tests.rb