Sha256: 4a2472279ebe6bdd3ae5482391b899e156d6ea40380163ac4a34012c8d0709d5

Contents?: true

Size: 616 Bytes

Versions: 67

Compression:

Stored size: 616 Bytes

Contents

Shindo.tests('HP::DNS | domain model', ['hp', 'dns', 'domain']) do

  attributes = {:name => 'www.fogtest.com.', :email => 'test@fogtest.com'}
  model_tests(HP[:dns].domains, attributes, true)

  tests('success') do

    tests('#create').succeeds do
      attributes = {:name => 'www.fogtest.com.', :email => 'test@fogtest.com', :ttl => 3600}
      @domain = HP[:dns].domains.create(attributes)
      !@domain.id.nil?
    end

    tests('Update via #save').succeeds do
      @domain.email = 'update@fogtest.com'
      @domain.save
    end

    tests('#destroy').succeeds do
      @domain.destroy
    end

  end

end

Version data entries

67 entries across 67 versions & 5 rubygems

Version Path
fog-maestrodev-1.19.0.20140107142106 tests/hp/models/dns/domain_tests.rb
fog-maestrodev-1.19.0.20131219203941 tests/hp/models/dns/domain_tests.rb
fog-maestrodev-1.18.0.20131219193542 tests/hp/models/dns/domain_tests.rb
fog-1.19.0 tests/hp/models/dns/domain_tests.rb
fog-maestrodev-1.18.0.20131219033443 tests/hp/models/dns/domain_tests.rb
fog-maestrodev-1.18.0.20131219032002 tests/hp/models/dns/domain_tests.rb
fog-maestrodev-1.18.0.20131219030716 tests/hp/models/dns/domain_tests.rb
fog-maestrodev-1.18.0.20131219022322 tests/hp/models/dns/domain_tests.rb
fog-maestrodev-1.18.0.20131218202447 tests/hp/models/dns/domain_tests.rb
fog-maestrodev-1.18.0.20131209091424 tests/hp/models/dns/domain_tests.rb
fog-maestrodev-1.18.0.20131209090811 tests/hp/models/dns/domain_tests.rb
fog-maestrodev-1.18.0.20131206115947 tests/hp/models/dns/domain_tests.rb
fog-maestrodev-1.18.0.20131205181604 tests/hp/models/dns/domain_tests.rb
fog-maestrodev-1.18.0.20131127194823 tests/hp/models/dns/domain_tests.rb
fog-maestrodev-1.18.0.20131126183714 tests/hp/models/dns/domain_tests.rb
fog-maestrodev-1.18.0.20131126122111 tests/hp/models/dns/domain_tests.rb
fog-maestrodev-1.18.0.20131125111730 tests/hp/models/dns/domain_tests.rb
fog-maestrodev-1.18.0.20131125083406 tests/hp/models/dns/domain_tests.rb
fog-maestrodev-1.18.0.20131123105121 tests/hp/models/dns/domain_tests.rb
fog-maestrodev-1.18.0.20131122203507 tests/hp/models/dns/domain_tests.rb