summaryrefslogtreecommitdiffstats
path: root/tests/default_fixtures.py
diff options
context:
space:
mode:
authorAdam Young <ayoung@redhat.com>2012-11-06 17:16:56 -0500
committerAdam Young <ayoung@redhat.com>2012-11-27 11:06:11 -0500
commit1012bd42df5906bca67a82663f23b5c8a4eafe68 (patch)
tree48171a462d1f0978528945aa8c06fc171e6bf482 /tests/default_fixtures.py
parent07c1aafdf20db6d6d7c0d3e15074bc02e2f1d2aa (diff)
downloadkeystone-1012bd42df5906bca67a82663f23b5c8a4eafe68.tar.gz
keystone-1012bd42df5906bca67a82663f23b5c8a4eafe68.tar.xz
keystone-1012bd42df5906bca67a82663f23b5c8a4eafe68.zip
normalize identity
modify tables by adding columns, and modify entities by adding attributes for password, description and enabled update tests to deal with change from 'False' and 'True' to the python values False and True Added a Text type from SQL Alchemy Bug 1070351 Bug 1023544 Change-Id: I066c788b5d08a8f42a9b5412ea9e29e4fe9ba205
Diffstat (limited to 'tests/default_fixtures.py')
-rw-r--r--tests/default_fixtures.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/default_fixtures.py b/tests/default_fixtures.py
index b1ea5198..4a844a50 100644
--- a/tests/default_fixtures.py
+++ b/tests/default_fixtures.py
@@ -44,6 +44,14 @@ USERS = [
'enabled': True,
'tenant_id': 'baz',
'tenants': ['baz'],
+ }, {
+ 'id': 'badguy',
+ 'name': 'BadGuy',
+ 'password': 'bad',
+ 'email': 'bad@guy.com',
+ 'enabled': False,
+ 'tenant_id': 'baz',
+ 'tenants': ['baz'],
}
]