aboutsummaryrefslogtreecommitdiffstats
path: root/python_moonclient/tests/unit_python/conf/conf_subject_categories.py
diff options
context:
space:
mode:
authorAsteroide <thomas.duval@orange.com>2018-02-19 15:34:21 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-02-19 15:34:21 +0000
commitde90a15a11b5a9e9a9784ab6043e1c956d21ea0f (patch)
tree676f8748d54541623cb7dc07098e9c7170796085 /python_moonclient/tests/unit_python/conf/conf_subject_categories.py
parente36a301b551e454ea8c28aa2beefd8f535d8f6fe (diff)
parent4bf344a003f550369511e5c3600b2600101cc8b7 (diff)
Merge "Use cliff for the moonclient cli"
Diffstat (limited to 'python_moonclient/tests/unit_python/conf/conf_subject_categories.py')
-rw-r--r--python_moonclient/tests/unit_python/conf/conf_subject_categories.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/python_moonclient/tests/unit_python/conf/conf_subject_categories.py b/python_moonclient/tests/unit_python/conf/conf_subject_categories.py
new file mode 100644
index 00000000..e59a458a
--- /dev/null
+++ b/python_moonclient/tests/unit_python/conf/conf_subject_categories.py
@@ -0,0 +1,30 @@
+
+SUBJECT_CATEGORIES = {
+ "subject_categories": {
+ "1": {
+ "name": "subject_cat_1",
+ "description": "description of the category"
+ }
+ }
+}
+
+POST_SUBJECT_CATEGORIES = {
+ "subject_categories": {
+ "1": {
+ "name": "subject_cat_1",
+ "description": "description of the category"
+ }
+ }
+}
+
+def conf_subject_categories(m):
+ m.register_uri(
+ 'GET', 'http://manager:30001/subject_categories',
+ headers={'X-Subject-Token': "111111111"},
+ json=SUBJECT_CATEGORIES
+ )
+ m.register_uri(
+ 'POST', 'http://manager:30001/subject_categories',
+ headers={'X-Subject-Token': "111111111"},
+ json=POST_SUBJECT_CATEGORIES
+ )