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-maestrodev-1.18.0.20131209090811 tests/dreamhost/models/dns/records_tests.rb
fog-maestrodev-1.18.0.20131206115947 tests/dreamhost/models/dns/records_tests.rb
fog-maestrodev-1.18.0.20131205181604 tests/dreamhost/models/dns/records_tests.rb
fog-maestrodev-1.18.0.20131127194823 tests/dreamhost/models/dns/records_tests.rb
fog-maestrodev-1.18.0.20131126183714 tests/dreamhost/models/dns/records_tests.rb
fog-maestrodev-1.18.0.20131126122111 tests/dreamhost/models/dns/records_tests.rb
fog-maestrodev-1.18.0.20131125111730 tests/dreamhost/models/dns/records_tests.rb
fog-maestrodev-1.18.0.20131125083406 tests/dreamhost/models/dns/records_tests.rb
fog-maestrodev-1.18.0.20131123105121 tests/dreamhost/models/dns/records_tests.rb
fog-maestrodev-1.18.0.20131122203507 tests/dreamhost/models/dns/records_tests.rb
fog-maestrodev-1.18.0.20131121075022 tests/dreamhost/models/dns/records_tests.rb
fog-maestrodev-1.18.0.20131118164830 tests/dreamhost/models/dns/records_tests.rb
fog-maestrodev-1.18.0.20131115184302 tests/dreamhost/models/dns/records_tests.rb
fog-maestrodev-1.18.0.20131114200144 tests/dreamhost/models/dns/records_tests.rb
gapinc-fog-1.12.1.2.1 tests/dreamhost/models/dns/records_tests.rb
fog-maestrodev-1.18.0.20131112185232 tests/dreamhost/models/dns/records_tests.rb
fog-maestrodev-1.18.0.20131111203459 tests/dreamhost/models/dns/records_tests.rb
fog-1.18.0 tests/dreamhost/models/dns/records_tests.rb
fog-1.17.0 tests/dreamhost/models/dns/records_tests.rb
fog-1.16.0 tests/dreamhost/models/dns/records_tests.rb