diff options
| author | Ankur Gupta <ankur.gupta@intel.com> | 2016-09-19 16:43:28 -0500 |
|---|---|---|
| committer | Ankur Gupta <ankur.gupta@intel.com> | 2016-09-19 19:18:17 -0500 |
| commit | 88be7ddd388c440d3f80564c7f1f4f2aed1a8e36 (patch) | |
| tree | bdf2d642f7a428de5d75106b960c468514f5fb85 /openstackclient/tests/unit/network/v2/fakes.py | |
| parent | 44cf358a142ec1ead41cebe40fe2867483c3fc03 (diff) | |
| download | python-openstackclient-88be7ddd388c440d3f80564c7f1f4f2aed1a8e36.tar.gz | |
Add --description to Create/Set Network
Added simple option for network description to create and
set network.
Change-Id: I90ce4db4e365a56ecddb00d59f4c5aa2ebbd49a3
Partially-Implements: blueprint network-command-options
Diffstat (limited to 'openstackclient/tests/unit/network/v2/fakes.py')
| -rw-r--r-- | openstackclient/tests/unit/network/v2/fakes.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/openstackclient/tests/unit/network/v2/fakes.py b/openstackclient/tests/unit/network/v2/fakes.py index 4cc3512e..73a7d2fd 100644 --- a/openstackclient/tests/unit/network/v2/fakes.py +++ b/openstackclient/tests/unit/network/v2/fakes.py @@ -285,6 +285,7 @@ class FakeNetwork(object): 'id': 'network-id-' + uuid.uuid4().hex, 'name': 'network-name-' + uuid.uuid4().hex, 'status': 'ACTIVE', + 'description': 'network-description-' + uuid.uuid4().hex, 'tenant_id': 'project-id-' + uuid.uuid4().hex, 'admin_state_up': True, 'shared': False, |
