summaryrefslogtreecommitdiff
path: root/openstackclient/tests/unit
diff options
context:
space:
mode:
authorDavid Caro <me@dcaro.es>2021-06-02 16:33:53 +0200
committerDavid Caro <me@dcaro.es>2021-06-03 09:44:39 +0200
commiteca1fcd65f22ead444ec39fe20f48c83f8d7c1cf (patch)
treeb2e70837938af975be150352587bbd2757358020 /openstackclient/tests/unit
parent443c311fc288eefe1b9223b6b51a94121ab9d301 (diff)
downloadpython-openstackclient-eca1fcd65f22ead444ec39fe20f48c83f8d7c1cf.tar.gz
Include hosts in aggregate list --long
This makes it easier to get the total list of aggregates and the hosts belonging to each of them (specially for scripting purposes). Change-Id: I94833c15075ae655bc11e7c0fc47c0abad5846fc Signed-off-by: David Caro <me@dcaro.es>
Diffstat (limited to 'openstackclient/tests/unit')
-rw-r--r--openstackclient/tests/unit/compute/v2/test_aggregate.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/openstackclient/tests/unit/compute/v2/test_aggregate.py b/openstackclient/tests/unit/compute/v2/test_aggregate.py
index 8563f988..92ff607f 100644
--- a/openstackclient/tests/unit/compute/v2/test_aggregate.py
+++ b/openstackclient/tests/unit/compute/v2/test_aggregate.py
@@ -234,6 +234,7 @@ class TestAggregateList(TestAggregate):
"Name",
"Availability Zone",
"Properties",
+ "Hosts",
)
list_data = ((
@@ -251,6 +252,7 @@ class TestAggregateList(TestAggregate):
for key, value in TestAggregate.fake_ag.metadata.items()
if key != 'availability_zone'
}),
+ format_columns.ListColumn(TestAggregate.fake_ag.hosts),
), )
def setUp(self):