Sha256: c383d0ce9f6bb0c4db9931ccf331a5aa7f568bde47ba19cd49b3fde8b51ceead

Contents?: true

Size: 904 Bytes

Versions: 79

Compression:

Stored size: 904 Bytes

Contents

Shindo.tests("Fog::Dns[:aws] | record", ['aws', 'dns']) do

  tests("zones#create").succeeds do
    @zone = Fog::DNS[:aws].zones.create(:domain => generate_unique_domain)
  end

  params = { :name => @zone.domain, :type => 'A', :ttl => 3600, :value => ['1.2.3.4'] }

  model_tests(@zone.records, params) do

    # Newly created records should have a change id
    tests("#change_id") do
      returns(true) { @instance.change_id != nil }
    end

    # Waits for changes to sync to all Route 53 DNS servers.  Usually takes ~30 seconds to complete.
    tests("#ready? - may take a minute to complete...").succeeds do
      @instance.wait_for { ready? }
    end

    tests("#modify") do
      new_value = ['5.5.5.5']
      returns(true) { @instance.modify(:value => new_value) }
      returns(new_value) { @instance.value }
    end

  end

  tests("zones#destroy").succeeds do
    @zone.destroy
  end

end

Version data entries

79 entries across 77 versions & 6 rubygems

Version Path
fog-aws-0.0.8 tests/models/dns/record_tests.rb
fog-aws-0.0.7 tests/models/dns/record_tests.rb
fog-aws-0.0.6 tests/models/dns/record_tests.rb
fog-aws-0.0.5 tests/models/dns/record_tests.rb
fog-1.26.0 tests/aws/models/dns/record_tests.rb
fog-1.25.0 tests/aws/models/dns/record_tests.rb
nsidc-fog-1.24.1 tests/aws/models/dns/record_tests.rb
fog-1.24.0 tests/aws/models/dns/record_tests.rb
ns-fog-1.22.11 tests/aws/models/dns/record_tests.rb
ns-fog-1.22.10 tests/aws/models/dns/record_tests.rb
ns-fog-1.22.9 tests/aws/models/dns/record_tests.rb
ns-fog-1.22.8 tests/aws/models/dns/record_tests.rb
ns-fog-1.22.7 tests/aws/models/dns/record_tests.rb
ns-fog-1.22.6 tests/aws/models/dns/record_tests.rb
fog-1.23.0 tests/aws/models/dns/record_tests.rb
ns-fog-1.22.4 tests/aws/models/dns/record_tests.rb
ns-fog-1.22.3 tests/aws/models/dns/record_tests.rb
ns-fog-1.22.2 tests/aws/models/dns/record_tests.rb
fog-1.22.1 tests/aws/models/dns/record_tests.rb