summaryrefslogtreecommitdiffstats
path: root/roles/lib_openshift/src/test/integration
diff options
context:
space:
mode:
authorKenny Woodson <kwoodson@redhat.com>2017-02-02 22:21:23 -0500
committerKenny Woodson <kwoodson@redhat.com>2017-02-02 22:30:24 -0500
commit4b054d7da5f404dfd8eb238b617e4dcf7dc93b17 (patch)
tree9934d286fc1a943dc8174fdca8fd451d1cad4ec9 /roles/lib_openshift/src/test/integration
parentf94417164f57891eb016ca5e98c6e713e1f66726 (diff)
downloadopenshift-4b054d7da5f404dfd8eb238b617e4dcf7dc93b17.tar.gz
openshift-4b054d7da5f404dfd8eb238b617e4dcf7dc93b17.tar.bz2
openshift-4b054d7da5f404dfd8eb238b617e4dcf7dc93b17.tar.xz
openshift-4b054d7da5f404dfd8eb238b617e4dcf7dc93b17.zip
Doc enhancements.
Diffstat (limited to 'roles/lib_openshift/src/test/integration')
-rw-r--r--roles/lib_openshift/src/test/integration/filter_plugins/filters.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/roles/lib_openshift/src/test/integration/filter_plugins/filters.py b/roles/lib_openshift/src/test/integration/filter_plugins/filters.py
index 71a29ab7d..6990a11a8 100644
--- a/roles/lib_openshift/src/test/integration/filter_plugins/filters.py
+++ b/roles/lib_openshift/src/test/integration/filter_plugins/filters.py
@@ -7,11 +7,14 @@ Custom filters for use in testing
class FilterModule(object):
- ''' Custom ansible filters '''
+ ''' Custom filters for use in integration testing '''
@staticmethod
def label_dict_to_key_value_list(label_dict):
- ''' given a dict of labels/values, return list of key: <key> value: <value> pairs'''
+ ''' Given a dict of labels/values, return list of key: <key> value: <value> pairs
+
+ These are only used in integration testing.
+ '''
label_list = []
for key in label_dict: