1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/tests/aws/models/elasticache/parameter_groups_tests.rb

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