Add sub-minimal mocking of elasticbeanstalk:create_application()

This commit is contained in:
Niels Laukens 2019-09-03 16:10:32 +02:00
commit 336f50349a
No known key found for this signature in database
GPG key ID: D1397B5A6435A6D8
7 changed files with 181 additions and 5 deletions

7
moto/eb/exceptions.py Normal file
View file

@ -0,0 +1,7 @@
from moto.core.exceptions import RESTError
class InvalidParameterValueError(RESTError):
def __init__(self, message):
super(InvalidParameterValueError, self).__init__(
"InvalidParameterValue", message)