mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
17 lines
409 B
Ruby
17 lines
409 B
Ruby
Shindo.tests('AWS::Elasticache | parameter groups', ['aws', 'elasticache']) do
|
|
group_name = 'fog-test'
|
|
description = 'Fog Test'
|
|
|
|
pending if Fog.mocking?
|
|
|
|
model_tests(
|
|
AWS[:elasticache].parameter_groups,
|
|
{:id => group_name, :description => description}, false
|
|
)
|
|
|
|
collection_tests(
|
|
AWS[:elasticache].parameter_groups,
|
|
{:id => group_name, :description => description}, false
|
|
)
|
|
|
|
end
|