add route53

This commit is contained in:
jjofseattle 2013-11-14 11:14:14 -08:00
commit a11c80fe20
8 changed files with 276 additions and 1 deletions

12
moto/route53/urls.py Normal file
View file

@ -0,0 +1,12 @@
import responses
url_bases = [
#"https://route53.amazonaws.com/201\d-\d\d-\d\d/hostedzone",
"https://route53.amazonaws.com/201.-..-../hostedzone",
]
url_paths = {
'{0}$': responses.list_or_create_hostzone_response,
'{0}/.+$': responses.get_or_delete_hostzone_response,
'{0}/.+/rrset$': responses.rrset_response,
}