mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
Added test for describe_events.rb. It is very simple, and I'm not familiar with Shindo, so may need some assistance expanding
This commit is contained in:
parent
bc20543220
commit
6cd3cbd114
1 changed files with 16 additions and 0 deletions
16
tests/aws/requests/rds/describe_events.rb
Normal file
16
tests/aws/requests/rds/describe_events.rb
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
Shindo.tests('AWS::RDS | describe DB events requests',['aws', 'rds']) do
|
||||||
|
|
||||||
|
tests('success') do
|
||||||
|
pending if Fog.mocking?
|
||||||
|
|
||||||
|
tests(
|
||||||
|
'#describe_events'
|
||||||
|
).formats(AWS::RDS::Formats::EVENT_LIST) do
|
||||||
|
AWS[:rds].describe_events().body['Events']
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
tests('failure') do
|
||||||
|
#TODO: What constitutes a failure here?
|
||||||
|
end
|
||||||
|
end
|
Loading…
Add table
Reference in a new issue