1
0
Fork 0
mirror of https://github.com/fog/fog-aws.git synced 2022-11-09 13:50:52 -05:00
fog--fog-aws/tests/models/efs/file_system_tests.rb

12 lines
367 B
Ruby

Shindo.tests("AWS::EFS | file system", ["aws", "efs"]) do
file_system_params = {
:creation_token => "fogtoken#{rand(999).to_s}"
}
model_tests(Fog::AWS[:efs].file_systems, file_system_params, true)
file_system_params = {
:creation_token => "fogtoken#{rand(999).to_s}"
}
collection_tests(Fog::AWS[:efs].file_systems, file_system_params, true)
end