From 877f3b056aebf619ccb2fafa91ef334dc43bfaae Mon Sep 17 00:00:00 2001 From: Dejan Levec Date: Fri, 27 Dec 2019 18:53:14 +0100 Subject: [PATCH] Add IsTruncated to Route53.list_resource_record_sets --- moto/route53/responses.py | 1 + tests/test_route53/test_route53.py | 2 ++ 2 files changed, 3 insertions(+) diff --git a/moto/route53/responses.py b/moto/route53/responses.py index 3e688b65d..077c89a2c 100644 --- a/moto/route53/responses.py +++ b/moto/route53/responses.py @@ -271,6 +271,7 @@ LIST_RRSET_RESPONSE = """ diff --git a/tests/test_route53/test_route53.py b/tests/test_route53/test_route53.py index 0e9a1e2c0..746c78719 100644 --- a/tests/test_route53/test_route53.py +++ b/tests/test_route53/test_route53.py @@ -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"] ]