initial support for apigateway stages, in particular the update_stage method

This commit is contained in:
Waldemar Hummer 2016-08-11 16:14:13 +10:00
commit db275a1573
5 changed files with 80 additions and 3 deletions

View file

@ -16,7 +16,7 @@ from werkzeug.serving import run_simple
from moto.backends import BACKENDS
from moto.core.utils import convert_flask_to_httpretty_response
HTTP_METHODS = ["GET", "POST", "PUT", "DELETE", "HEAD"]
HTTP_METHODS = ["GET", "POST", "PUT", "DELETE", "HEAD", "PATCH"]
class DomainDispatcherApplication(object):