From 759549c9d7114c2d544b84d5d0edfc47be8df063 Mon Sep 17 00:00:00 2001 From: Marc Date: Fri, 10 Oct 2014 14:47:17 +0000 Subject: [PATCH] initial web tests --- orchestra/apps/domains/tests/functional_tests/tests.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/orchestra/apps/domains/tests/functional_tests/tests.py b/orchestra/apps/domains/tests/functional_tests/tests.py index 1755df0b..ebb21e25 100644 --- a/orchestra/apps/domains/tests/functional_tests/tests.py +++ b/orchestra/apps/domains/tests/functional_tests/tests.py @@ -194,13 +194,13 @@ class DomainTestMixin(object): self.add(self.ns1_name, self.ns1_records) self.add(self.ns2_name, self.ns2_records) self.add(self.domain_name, self.domain_records) -# self.addCleanup(partial(self.delete, self.domain_name)) + self.addCleanup(partial(self.delete, self.domain_name)) self.update(self.domain_name, self.domain_update_records) -# self.add(self.www_name, self.www_records) + self.add(self.www_name, self.www_records) time.sleep(0.5) self.validate_update(self.MASTER_SERVER_ADDR, self.domain_name) -# time.sleep(5) -# self.validate_update(self.SLAVE_SERVER_ADDR, self.domain_name) + time.sleep(5) + self.validate_update(self.SLAVE_SERVER_ADDR, self.domain_name) def test_add_add_delete_delete(self): self.add(self.ns1_name, self.ns1_records)