This is required for the server test to work

This commit is contained in:
Jack Danger 2017-08-01 18:26:38 -07:00
commit 8188fea0ce
2 changed files with 8 additions and 3 deletions

View file

@ -1,5 +1,10 @@
from __future__ import unicode_literals
from .responses import ELBV2Response
url_bases = []
url_bases = [
"https?://elasticloadbalancing.(.+).amazonaws.com",
]
url_paths = {}
url_paths = {
'{0}/$': ELBV2Response.dispatch,
}