From 325c8868ab239bdc50586a7f317dfd4f2f850d0b Mon Sep 17 00:00:00 2001 From: Tom Limoncelli Date: Tue, 7 Feb 2023 14:55:01 -0500 Subject: [PATCH] TESTING: Add test for TTL change (#2062) --- integrationTest/integration_test.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/integrationTest/integration_test.go b/integrationTest/integration_test.go index 2323037b7..33c3f6495 100644 --- a/integrationTest/integration_test.go +++ b/integrationTest/integration_test.go @@ -700,6 +700,11 @@ func makeTests(t *testing.T) []*TestGroup { tc("Change A target", a("testa", "1.2.3.4")), ), + testgroup("Attl", + tc("Create Arc", ttl(a("testa", "1.1.1.1"), 333)), + tc("Change TTL", ttl(a("testa", "1.1.1.1"), 999)), + ), + testgroup("MX", tc("Create MX", mx("testmx", 5, "foo.com.")), tc("Change MX target", mx("testmx", 5, "bar.com.")),