summaryrefslogtreecommitdiffstats
path: root/tests/default_fixtures.py
diff options
context:
space:
mode:
authortermie <github@anarkystic.com>2011-12-27 12:06:14 -0800
committertermie <github@anarkystic.com>2011-12-27 12:17:01 -0800
commit8425eabe6ffb9dcdfe205d559ca33e5cbf749428 (patch)
treefe5e25e410dfe32e2865e2e71fede7561a62f616 /tests/default_fixtures.py
parent7541ed49954dea081ecb3aa97246b42b4f3c92c3 (diff)
downloadkeystone-8425eabe6ffb9dcdfe205d559ca33e5cbf749428.tar.gz
keystone-8425eabe6ffb9dcdfe205d559ca33e5cbf749428.tar.xz
keystone-8425eabe6ffb9dcdfe205d559ca33e5cbf749428.zip
add basic fixture functionality
Diffstat (limited to 'tests/default_fixtures.py')
-rw-r--r--tests/default_fixtures.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/default_fixtures.py b/tests/default_fixtures.py
new file mode 100644
index 00000000..15a8b60a
--- /dev/null
+++ b/tests/default_fixtures.py
@@ -0,0 +1,16 @@
+TENANTS = [
+ {'id': 'bar', 'name': 'BAR'},
+ ]
+
+USERS = [
+ {'id': 'foo', 'name': 'FOO', 'password': 'foo2', 'tenants': ['bar',]},
+ ]
+
+EXTRAS = [
+ {'user': 'foo', 'tenant': 'bar', 'extra': 'extra'},
+ ]
+
+#ROLES = [
+# {'id': 'keystone_admin', 'name': 'Keystone Admin'},
+# ]
+ROLES = []