Sha256: 61f1d526bd33592a12e8d629ff113f06c3397514cc8f1001155866fdb8287e4b
Contents?: true
Size: 903 Bytes
Versions: 48
Compression:
Stored size: 903 Bytes
Contents
### exist ```ruby describe route53_hosted_zone('example.com.') do it { should exist } end ``` ### have_record_set ```ruby describe route53_hosted_zone('example.com.') do its(:resource_record_set_count) { should eq 6 } it { should have_record_set('example.com.') } it { should have_record_set('example.com.').type('a') } it { should have_record_set('example.com.').a('123.456.7.890') } it { should have_record_set('*.example.com.').cname('example.com') } it { should have_record_set('example.com.').mx('10 mail.example.com') } it { should have_record_set('mail.example.com.').a('123.456.7.890').ttl(3600) } ns = 'ns-123.awsdns-45.net. ns-6789.awsdns-01.org. ns-2345.awsdns-67.co.uk. ns-890.awsdns-12.com.' it { should have_record_set('example.com.').ns(ns) } it { should have_record_set('s3.example.com.').alias('s3-website-us-east-1.amazonaws.com.', 'Z2ABCDEFGHIJKL') } end ```
Version data entries
48 entries across 48 versions & 3 rubygems