summaryrefslogtreecommitdiff
path: root/heat/tests/test_rpc_client.py
diff options
context:
space:
mode:
authorJason Dunsmore <jasondunsmore@gmail.com>2015-02-04 16:19:57 -0600
committerJason Dunsmore <jasondunsmore@gmail.com>2015-04-16 12:59:40 -0500
commit3c30bf87274e6b9129b4382d2af2300eeafd669c (patch)
tree15c3d9f05a5b2ce0e1caf1f37e51ed60acf91173 /heat/tests/test_rpc_client.py
parentce3f1d299c903990ae66e860f1a4a8ceed986a68 (diff)
downloadheat-3c30bf87274e6b9129b4382d2af2300eeafd669c.tar.gz
Add ability to filter stacks by tag
blueprint stack-tags Change-Id: I4b5bc741fc271cb08ec588ae962573c59286dae5
Diffstat (limited to 'heat/tests/test_rpc_client.py')
-rw-r--r--heat/tests/test_rpc_client.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/heat/tests/test_rpc_client.py b/heat/tests/test_rpc_client.py
index 5ed750f2e..676944fb9 100644
--- a/heat/tests/test_rpc_client.py
+++ b/heat/tests/test_rpc_client.py
@@ -116,6 +116,10 @@ class EngineRpcAPITestCase(common.HeatTestCase):
'show_deleted': mock.ANY,
'show_nested': mock.ANY,
'show_hidden': mock.ANY,
+ 'tags': mock.ANY,
+ 'tags_any': mock.ANY,
+ 'not_tags': mock.ANY,
+ 'not_tags_any': mock.ANY,
}
self._test_engine_api('list_stacks', 'call', **default_args)
@@ -126,6 +130,10 @@ class EngineRpcAPITestCase(common.HeatTestCase):
'show_deleted': mock.ANY,
'show_nested': mock.ANY,
'show_hidden': mock.ANY,
+ 'tags': mock.ANY,
+ 'tags_any': mock.ANY,
+ 'not_tags': mock.ANY,
+ 'not_tags_any': mock.ANY,
}
self._test_engine_api('count_stacks', 'call', **default_args)