Sha256: 8018c2d58a7400829bdb6b2cf61dc4015415dcdaf3770a15ddcdf9de2a0a6883

Contents?: true

Size: 696 Bytes

Versions: 61

Compression:

Stored size: 696 Bytes

Contents

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

  service = Fog::DNS[:dreamhost]
  
  tests('#all') do
    records = service.records

    test('should be an array') { records.is_a? Array }

    test('should not be empty') { !records.empty? }
    
    tests('should list Fog::DNS::Dreamhost::Record') do
      records.each do |r|
        test("as records") { r.is_a?(Fog::DNS::Dreamhost::Record) }
      end
    end
  end

  tests('#get') do
    tests('should fetch a record') do
      record = service.records.get do_not_delete_record
      test('should be a Fog::DNS::Dreamhost::Record') do
        record.is_a? Fog::DNS::Dreamhost::Record
      end
    end
  end

end

Version data entries

61 entries across 61 versions & 6 rubygems

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