Sha256: e8643117b95fa8aa9e4b855d2190f6e1fca8243aeb1c81fb894d57479233392a

Contents?: true

Size: 1006 Bytes

Versions: 61

Compression:

Stored size: 1006 Bytes

Contents

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

  tests("success") do
    
    test("create an A resource record without comment") do
      name = "foo.testing.#{test_domain}"
      type = "A"
      value = "1.2.3.4"
      response = Fog::DNS[:dreamhost].create_record(name, type, value)

      response.body['result'] == 'success'
    end
    
    test("create an A resource record with comment") do
      name = "foo2.testing.#{test_domain}"
      type = "A"
      value = "1.2.3.4"
      comment = "test"
      response = Fog::DNS[:dreamhost].create_record(name, type, value, comment)
      
      response.body['result'] == 'success'
    end

    test("create TXT record") do
      name = "txt.testing.#{test_domain}"
      type = "txt"
      value = "foobar"
      comment = "test"
      response = Fog::DNS[:dreamhost].create_record(name, type, value, comment)
      
      response.body['result'] == 'success'
    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/create_record_tests.rb
fog-1.21.0 tests/dreamhost/requests/dns/create_record_tests.rb
fog-maestrodev-1.20.0.20140305101839 tests/dreamhost/requests/dns/create_record_tests.rb
fog-maestrodev-1.20.0.20140305101305 tests/dreamhost/requests/dns/create_record_tests.rb
fog-maestrodev-1.19.0.20140212012611 tests/dreamhost/requests/dns/create_record_tests.rb
fog-1.20.0 tests/dreamhost/requests/dns/create_record_tests.rb
fog-maestrodev-1.19.0.20140110004459 tests/dreamhost/requests/dns/create_record_tests.rb
fog-maestrodev-1.19.0.20140110003812 tests/dreamhost/requests/dns/create_record_tests.rb
fog-maestrodev-1.19.0.20140109202555 tests/dreamhost/requests/dns/create_record_tests.rb
fog-maestrodev-1.19.0.20140107192102 tests/dreamhost/requests/dns/create_record_tests.rb
fog-maestrodev-1.19.0.20140107142106 tests/dreamhost/requests/dns/create_record_tests.rb
fog-maestrodev-1.19.0.20131219203941 tests/dreamhost/requests/dns/create_record_tests.rb
fog-maestrodev-1.18.0.20131219193542 tests/dreamhost/requests/dns/create_record_tests.rb
fog-1.19.0 tests/dreamhost/requests/dns/create_record_tests.rb
fog-maestrodev-1.18.0.20131219033443 tests/dreamhost/requests/dns/create_record_tests.rb
fog-maestrodev-1.18.0.20131219032002 tests/dreamhost/requests/dns/create_record_tests.rb
fog-maestrodev-1.18.0.20131219030716 tests/dreamhost/requests/dns/create_record_tests.rb
fog-maestrodev-1.18.0.20131219022322 tests/dreamhost/requests/dns/create_record_tests.rb
fog-maestrodev-1.18.0.20131218202447 tests/dreamhost/requests/dns/create_record_tests.rb
fog-maestrodev-1.18.0.20131209091424 tests/dreamhost/requests/dns/create_record_tests.rb