Sha256: 304128d3e09a5869ddf0017c084745643c9b5537891a1769a5efeb27a2cfbe34

Contents?: true

Size: 661 Bytes

Versions: 61

Compression:

Stored size: 661 Bytes

Contents

Shindo.tests('Fog::DNS[:dreamhost] | delete_record request', ['dreamhost', 'dns']) do

  tests("success") do
    
    test("delete testing records") do
      name = "delete-test.#{test_domain}"
      type = "A"
      value = "1.2.3.4"
      comment = "test"
      Fog::DNS[:dreamhost].create_record(name, type, value, comment)
      response = Fog::DNS[:dreamhost].delete_record(name, type, value)
      response.body['result'] == 'success'
    end

  end

  tests( 'failure') do
    raises(RuntimeError, 'deleting non-existent record') do
      Fog::DNS[:dreamhost].delete_record('foo.bar.bar', 'A', '1.2.3.4')
    end
  end

  # helper
  cleanup_records

end

Version data entries

61 entries across 61 versions & 6 rubygems

Version Path
fog-1.22.0 tests/dreamhost/requests/dns/delete_record_tests.rb
fog-1.21.0 tests/dreamhost/requests/dns/delete_record_tests.rb
fog-maestrodev-1.20.0.20140305101839 tests/dreamhost/requests/dns/delete_record_tests.rb
fog-maestrodev-1.20.0.20140305101305 tests/dreamhost/requests/dns/delete_record_tests.rb
fog-maestrodev-1.19.0.20140212012611 tests/dreamhost/requests/dns/delete_record_tests.rb
fog-1.20.0 tests/dreamhost/requests/dns/delete_record_tests.rb
fog-maestrodev-1.19.0.20140110004459 tests/dreamhost/requests/dns/delete_record_tests.rb
fog-maestrodev-1.19.0.20140110003812 tests/dreamhost/requests/dns/delete_record_tests.rb
fog-maestrodev-1.19.0.20140109202555 tests/dreamhost/requests/dns/delete_record_tests.rb
fog-maestrodev-1.19.0.20140107192102 tests/dreamhost/requests/dns/delete_record_tests.rb
fog-maestrodev-1.19.0.20140107142106 tests/dreamhost/requests/dns/delete_record_tests.rb
fog-maestrodev-1.19.0.20131219203941 tests/dreamhost/requests/dns/delete_record_tests.rb
fog-maestrodev-1.18.0.20131219193542 tests/dreamhost/requests/dns/delete_record_tests.rb
fog-1.19.0 tests/dreamhost/requests/dns/delete_record_tests.rb
fog-maestrodev-1.18.0.20131219033443 tests/dreamhost/requests/dns/delete_record_tests.rb
fog-maestrodev-1.18.0.20131219032002 tests/dreamhost/requests/dns/delete_record_tests.rb
fog-maestrodev-1.18.0.20131219030716 tests/dreamhost/requests/dns/delete_record_tests.rb
fog-maestrodev-1.18.0.20131219022322 tests/dreamhost/requests/dns/delete_record_tests.rb
fog-maestrodev-1.18.0.20131218202447 tests/dreamhost/requests/dns/delete_record_tests.rb
fog-maestrodev-1.18.0.20131209091424 tests/dreamhost/requests/dns/delete_record_tests.rb