mirror of
https://github.com/fog/fog-aws.git
synced 2022-11-09 13:50:52 -05:00
16 lines
586 B
Ruby
16 lines
586 B
Ruby
|
Shindo.tests("Fog::CDN[:aws] | distribution", ['aws', 'cdn']) do
|
||
|
params = { :s3_origin => { 'DNSName' => 'fog_test_cdn.s3.amazonaws.com'}, :enabled => true }
|
||
|
model_tests(Fog::CDN[:aws].distributions, params, true) do
|
||
|
# distribution needs to be ready before being disabled
|
||
|
tests("#ready? - may take 15 minutes to complete...").succeeds do
|
||
|
@instance.wait_for { ready? }
|
||
|
end
|
||
|
|
||
|
# and disabled before being distroyed
|
||
|
tests("#disable - may take 15 minutes to complete...").succeeds do
|
||
|
@instance.disable
|
||
|
@instance.wait_for { ready? }
|
||
|
end
|
||
|
end
|
||
|
end
|