Add IsTruncated to Route53.list_resource_record_sets

This commit is contained in:
Dejan Levec 2019-12-27 18:53:14 +01:00
commit 877f3b056a
2 changed files with 3 additions and 0 deletions

View file

@ -862,6 +862,8 @@ def test_list_resource_record_sets_name_type_filters():
StartRecordName=all_records[start_with][1],
)
response["IsTruncated"].should.equal(False)
returned_records = [
(record["Type"], record["Name"]) for record in response["ResourceRecordSets"]
]