Sha256: 14e8d50074ecbb9a12c136ee661dda5dd6329e676fd6200b6e162aabd3437c42

Contents?: true

Size: 657 Bytes

Versions: 43

Compression:

Stored size: 657 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

43 entries across 41 versions & 6 rubygems

Version Path
ns-fog-1.22.3 tests/dreamhost/requests/dns/delete_record_tests.rb
ns-fog-1.22.2 tests/dreamhost/requests/dns/delete_record_tests.rb
fog-1.22.1 tests/dreamhost/requests/dns/delete_record_tests.rb