summaryrefslogtreecommitdiff
path: root/openstackclient/tests/unit/network/v2/fakes.py
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-09-23 18:26:55 +0000
committerGerrit Code Review <review@openstack.org>2016-09-23 18:26:55 +0000
commit578cd12dfb2140da48dd5f8d2ed3e6a3e2906a2d (patch)
treebb21d1a777e3749b615550d4126f3a4ab47c0976 /openstackclient/tests/unit/network/v2/fakes.py
parentb0750c76eca8e8ec8849f70c839fac550d33f28c (diff)
parent0981931628cdea07793850631595cf7299badeaa (diff)
downloadpython-openstackclient-578cd12dfb2140da48dd5f8d2ed3e6a3e2906a2d.tar.gz
Merge "Add --description to Neutron commands"
Diffstat (limited to 'openstackclient/tests/unit/network/v2/fakes.py')
-rw-r--r--openstackclient/tests/unit/network/v2/fakes.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/openstackclient/tests/unit/network/v2/fakes.py b/openstackclient/tests/unit/network/v2/fakes.py
index 91aebf9f..d7ebd0bc 100644
--- a/openstackclient/tests/unit/network/v2/fakes.py
+++ b/openstackclient/tests/unit/network/v2/fakes.py
@@ -654,6 +654,7 @@ class FakeRouter(object):
'name': 'router-name-' + uuid.uuid4().hex,
'status': 'ACTIVE',
'admin_state_up': True,
+ 'description': 'router-description-' + uuid.uuid4().hex,
'distributed': False,
'ha': False,
'tenant_id': 'project-id-' + uuid.uuid4().hex,
@@ -973,6 +974,7 @@ class FakeFloatingIP(object):
'router_id': 'router-id-' + uuid.uuid4().hex,
'port_id': 'port-id-' + uuid.uuid4().hex,
'tenant_id': 'project-id-' + uuid.uuid4().hex,
+ 'description': 'floating-ip-description-' + uuid.uuid4().hex,
}
# Overwrite default attributes.