1
0
mirror of https://github.com/github/octodns.git synced 2024-05-11 05:55:00 +00:00

Plumb hosted_zone_id through to _Route53Record

This commit is contained in:
Ross McFarland
2019-04-01 09:33:56 -07:00
parent f83eeb0a9c
commit ed152ce0f3
2 changed files with 18 additions and 14 deletions

View File

@@ -1010,7 +1010,7 @@ class TestRoute53Provider(TestCase):
'HealthCheckId': '44',
})
change = Create(record)
provider._mod_Create(change)
provider._mod_Create(change, 'z43')
stubber.assert_no_pending_responses()
# gc through _mod_Update
@@ -1019,7 +1019,7 @@ class TestRoute53Provider(TestCase):
})
# first record is ignored for our purposes, we have to pass something
change = Update(record, record)
provider._mod_Create(change)
provider._mod_Create(change, 'z43')
stubber.assert_no_pending_responses()
# gc through _mod_Delete, expect 3 to go away, can't check order
@@ -1034,7 +1034,7 @@ class TestRoute53Provider(TestCase):
'HealthCheckId': ANY,
})
change = Delete(record)
provider._mod_Delete(change)
provider._mod_Delete(change, 'z43')
stubber.assert_no_pending_responses()
# gc only AAAA, leave the A's alone