From 430d7f765a75830ae377545bc57195d38e44e172 Mon Sep 17 00:00:00 2001 From: M V P Nitesh Date: Mon, 7 Aug 2017 18:41:35 +0530 Subject: Added support for a ``description`` attribute for Identity Roles Now user can add the description to the role when user creates the role. Added support for a ``description`` attribute for V3 Identity Roles. Co-Authored-By: wangxiyuan Co-Authored-By: Deepak Mourya Change-Id: I230af9cc833af13064636b5d9a7ce6334c3f6e9a Closes-Bug: #1669080 --- keystone/tests/unit/core.py | 1 + 1 file changed, 1 insertion(+) (limited to 'keystone/tests/unit/core.py') diff --git a/keystone/tests/unit/core.py b/keystone/tests/unit/core.py index 2034ba5fe..1c13a776a 100644 --- a/keystone/tests/unit/core.py +++ b/keystone/tests/unit/core.py @@ -385,6 +385,7 @@ def new_role_ref(**kwargs): ref = { 'id': uuid.uuid4().hex, 'name': uuid.uuid4().hex, + 'description': uuid.uuid4().hex, 'domain_id': None } ref.update(kwargs) -- cgit v1.2.1