1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

Simple model tests

This commit is contained in:
Keith Barrette 2013-02-16 19:09:30 -05:00
parent 17fb4f25f8
commit 43aa7c7abb
2 changed files with 12 additions and 0 deletions

View file

@ -0,0 +1,6 @@
Shindo.tests("AWS::DataPipeline | pipelines", ['aws', 'data_pipeline']) do
model_tests(Fog::AWS[:data_pipeline].pipelines, { id: uniq_id }) do
@instance.wait_for { ready? }
end
end

View file

@ -0,0 +1,6 @@
Shindo.tests("AWS::DataPipeline | pipelines", ['aws', 'data_pipeline']) do
collection_tests(Fog::AWS[:data_pipeline].servers, { id: uniq_id }) do
@instance.wait_for { ready? }
end
end