diff options
author | Thomas Bruederli <bruederli@kolabsys.com> | 2014-08-04 21:59:24 -0400 |
---|---|---|
committer | Thomas Bruederli <bruederli@kolabsys.com> | 2014-08-04 21:59:24 -0400 |
commit | a71a8d2729c7fb5a9fc31170cb762cb100aed7ba (patch) | |
tree | 4e57483119b0353f8b23b18c72ebed4c779a324f /tests/functional | |
parent | acbede72e43a4f38a1cb31e920a06dcdd13be2d2 (diff) | |
download | pykolab-a71a8d2729c7fb5a9fc31170cb762cb100aed7ba.tar.gz |
Inherit kolabinvitationpolicy attributes from resource collection; forward comments from owner confirmation replies
Diffstat (limited to 'tests/functional')
-rw-r--r-- | tests/functional/test_wallace/test_005_resource_invitation.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/functional/test_wallace/test_005_resource_invitation.py b/tests/functional/test_wallace/test_005_resource_invitation.py index 096fba8..c21f12c 100644 --- a/tests/functional/test_wallace/test_005_resource_invitation.py +++ b/tests/functional/test_wallace/test_005_resource_invitation.py @@ -34,6 +34,7 @@ SUMMARY:test DESCRIPTION:test ORGANIZER;CN="Doe, John":mailto:john.doe@example.org ATTENDEE;ROLE=REQ-PARTICIPANT;CUTYPE=RESOURCE;PARTSTAT=NEEDS-ACTION;RSVP=TRUE:mailto:%s +ATTENDEE;ROLE=REQ-PARTICIPANT;PARTSTAT=TENTATIVE;CN=Somebody Else:mailto:somebody@else.com TRANSP:OPAQUE END:VEVENT END:VCALENDAR @@ -221,9 +222,11 @@ class TestResourceInvitation(unittest.TestCase): self.room1 = funcs.resource_add("confroom", "Room 101", owner=self.jane['dn'], kolabinvitationpolicy='ACT_ACCEPT_AND_NOTIFY') self.room2 = funcs.resource_add("confroom", "Conference Room B-222") - self.room3 = funcs.resource_add("confroom", "CEOs Office 303", owner=self.jane['dn'], kolabinvitationpolicy='ACT_MANUAL') self.rooms = funcs.resource_add("collection", "Rooms", [ self.room1['dn'], self.room2['dn'] ], self.jane['dn'], kolabinvitationpolicy='ACT_ACCEPT_AND_NOTIFY') + self.room3 = funcs.resource_add("confroom", "CEOs Office 303") + self.viprooms = funcs.resource_add("collection", "VIP Rooms", [ self.room3['dn'] ], self.jane['dn'], kolabinvitationpolicy='ACT_MANUAL') + time.sleep(1) from tests.functional.synchronize import synchronize_once synchronize_once() |