add test user, project and role
[doctor.git] / tests / config.py
index 2a062c2..7a0bef2 100644 (file)
@@ -6,11 +6,21 @@
 # which accompanies this distribution, and is available at\r
 # http://www.apache.org/licenses/LICENSE-2.0\r
 ##############################################################################\r
+import itertools\r
 from oslo_config import cfg\r
 \r
+import image\r
+import os_clients\r
+import user\r
+\r
 \r
 def list_opts():\r
-    return []\r
+    return [\r
+        ('DEFAULT', itertools.chain(\r
+            os_clients.OPTS,\r
+            image.OPTS,\r
+            user.OPTS))\r
+    ]\r
 \r
 \r
 def prepare_conf(conf=None):\r