Skip to content

Commit

Permalink
Updated tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Frank Schmid committed Nov 21, 2017
1 parent 8f50c20 commit 76d34d2
Showing 1 changed file with 31 additions and 1 deletion.
32 changes: 31 additions & 1 deletion test/stackops/apiGateway.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,37 @@ describe('API Gateway', () => {
},
{
LoggingLevel: 'INFO',
HttpMethod: '*',
HttpMethod: 'DELETE',
ResourcePath: '/~1funcC'
},
{
LoggingLevel: 'INFO',
HttpMethod: 'GET',
ResourcePath: '/~1funcC'
},
{
LoggingLevel: 'INFO',
HttpMethod: 'HEAD',
ResourcePath: '/~1funcC'
},
{
LoggingLevel: 'INFO',
HttpMethod: 'OPTIONS',
ResourcePath: '/~1funcC'
},
{
LoggingLevel: 'INFO',
HttpMethod: 'PATCH',
ResourcePath: '/~1funcC'
},
{
LoggingLevel: 'INFO',
HttpMethod: 'POST',
ResourcePath: '/~1funcC'
},
{
LoggingLevel: 'INFO',
HttpMethod: 'PUT',
ResourcePath: '/~1funcC'
},
];
Expand Down

0 comments on commit 76d34d2

Please sign in to comment.