From 19a0d51d89b640c04dc285067fc59b4a7fe9ca7f Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Mon, 17 Jun 2013 04:41:06 -0400 Subject: Use dosctrings in BeakerLib phase descriptions Phase names are now in the format: test-module-TestClass-test_method: First line of docstring https://fedorahosted.org/freeipa/ticket/3723 --- ipatests/test_integration/test_simple_replication.py | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'ipatests/test_integration') diff --git a/ipatests/test_integration/test_simple_replication.py b/ipatests/test_integration/test_simple_replication.py index a5d1bb20..8da59e5c 100644 --- a/ipatests/test_integration/test_simple_replication.py +++ b/ipatests/test_integration/test_simple_replication.py @@ -23,10 +23,16 @@ from ipatests.test_integration.base import IntegrationTest class TestSimpleReplication(IntegrationTest): + """Simple replication test + + Install a server and a replica, then add an user on one host and ensure + it is also present on the other one. + """ num_replicas = 1 topology = 'star' def test_user_replication_to_replica(self): + """Test user replication master -> replica""" login = 'testuser1' self.master.run_command(['ipa', 'user-add', login, '--first', 'test', @@ -39,6 +45,7 @@ class TestSimpleReplication(IntegrationTest): assert 'User login: %s' % login in result.stdout_text def test_user_replication_to_master(self): + """Test user replication replica -> master""" login = 'testuser2' self.replicas[0].run_command(['ipa', 'user-add', login, '--first', 'test', -- cgit