Sha256: 1c31bb7e76bdc46bf15e5d10c6785a78a5c9b5ac928bfc27b453238459c16ba1

Contents?: true

Size: 570 Bytes

Versions: 14

Compression:

Stored size: 570 Bytes

Contents

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

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

  after do
    @keypair.destroy
  end

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

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

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

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


end

Version data entries

14 entries across 14 versions & 6 rubygems

Version Path
fog-nirvanix-1.8.2 tests/hp/models/compute/key_pair_tests.rb
fog-nirvanix-1.8.1 tests/hp/models/compute/key_pair_tests.rb
fog-parser-fix-1.6.1 tests/hp/models/compute/key_pair_tests.rb
fog-test-again-1.6.0 tests/hp/models/compute/key_pair_tests.rb
fog-parser-fix-1.6.0 tests/hp/models/compute/key_pair_tests.rb
fog-1.9.0 tests/hp/models/compute/key_pair_tests.rb
fog-maestrodev-1.8.0.20130114204828 tests/hp/models/compute/key_pair_tests.rb
fog-maestrodev-1.8.0.20130111070250 tests/hp/models/compute/key_pair_tests.rb
fog-maestrodev-1.8.0.20130109172219 tests/hp/models/compute/key_pair_tests.rb
fog-sgonyea-1.8.1 tests/hp/models/compute/key_pair_tests.rb
fog-1.8.0 tests/hp/models/compute/key_pair_tests.rb
fog-maestrodev-1.7.0.20121114190951 tests/hp/models/compute/key_pair_tests.rb
fog-1.7.0 tests/hp/models/compute/key_pair_tests.rb
fog-1.6.0 tests/hp/models/compute/key_pair_tests.rb