summaryrefslogtreecommitdiff
path: root/tests/auth_tests/fixtures/authtestdata.json
diff options
context:
space:
mode:
authorJosh Smeaton <josh.smeaton@gmail.com>2015-02-23 11:53:57 +1100
committerJosh Smeaton <josh.smeaton@gmail.com>2015-03-05 10:10:32 +1100
commit39a7eed1bbf12020a077e4bec3d82e08f171a021 (patch)
tree225be14a94d57517d9de646569498eb45d0a4352 /tests/auth_tests/fixtures/authtestdata.json
parentd6969abf239d52f6dfed7384c6ceb7df7e618342 (diff)
Converted test fixtures to setUpTestData methods
Diffstat (limited to 'tests/auth_tests/fixtures/authtestdata.json')
-rw-r--r--tests/auth_tests/fixtures/authtestdata.json110
1 files changed, 0 insertions, 110 deletions
diff --git a/tests/auth_tests/fixtures/authtestdata.json b/tests/auth_tests/fixtures/authtestdata.json
deleted file mode 100644
index 931328899b..0000000000
--- a/tests/auth_tests/fixtures/authtestdata.json
+++ /dev/null
@@ -1,110 +0,0 @@
-[
- {
- "pk": "1",
- "model": "auth.user",
- "fields": {
- "username": "testclient",
- "first_name": "Test",
- "last_name": "Client",
- "is_active": true,
- "is_superuser": false,
- "is_staff": false,
- "last_login": "2006-12-17 07:03:31",
- "groups": [],
- "user_permissions": [],
- "password": "sha1$6efc0$f93efe9fd7542f25a7be94871ea45aa95de57161",
- "email": "testclient@example.com",
- "date_joined": "2006-12-17 07:03:31"
- }
- },
- {
- "pk": "2",
- "model": "auth.user",
- "fields": {
- "username": "inactive",
- "first_name": "Inactive",
- "last_name": "User",
- "is_active": false,
- "is_superuser": false,
- "is_staff": false,
- "last_login": "2006-12-17 07:03:31",
- "groups": [],
- "user_permissions": [],
- "password": "sha1$6efc0$f93efe9fd7542f25a7be94871ea45aa95de57161",
- "email": "testclient2@example.com",
- "date_joined": "2006-12-17 07:03:31"
- }
- },
- {
- "pk": "3",
- "model": "auth.user",
- "fields": {
- "username": "staff",
- "first_name": "Staff",
- "last_name": "Member",
- "is_active": true,
- "is_superuser": false,
- "is_staff": true,
- "last_login": "2006-12-17 07:03:31",
- "groups": [],
- "user_permissions": [],
- "password": "sha1$6efc0$f93efe9fd7542f25a7be94871ea45aa95de57161",
- "email": "staffmember@example.com",
- "date_joined": "2006-12-17 07:03:31"
- }
- },
- {
- "pk": "4",
- "model": "auth.user",
- "fields": {
- "username": "empty_password",
- "first_name": "Empty",
- "last_name": "Password",
- "is_active": true,
- "is_superuser": false,
- "is_staff": false,
- "last_login": "2006-12-17 07:03:31",
- "groups": [],
- "user_permissions": [],
- "password": "",
- "email": "empty_password@example.com",
- "date_joined": "2006-12-17 07:03:31"
- }
- },
- {
- "pk": "5",
- "model": "auth.user",
- "fields": {
- "username": "unmanageable_password",
- "first_name": "Unmanageable",
- "last_name": "Password",
- "is_active": true,
- "is_superuser": false,
- "is_staff": false,
- "last_login": "2006-12-17 07:03:31",
- "groups": [],
- "user_permissions": [],
- "password": "$",
- "email": "unmanageable_password@example.com",
- "date_joined": "2006-12-17 07:03:31"
- }
- },
- {
- "pk": "6",
- "model": "auth.user",
- "fields": {
- "username": "unknown_password",
- "first_name": "Unknown",
- "last_name": "Password",
- "is_active": true,
- "is_superuser": false,
- "is_staff": false,
- "last_login": "2006-12-17 07:03:31",
- "groups": [],
- "user_permissions": [],
- "password": "foo$bar",
- "email": "unknown_password@example.com",
- "date_joined": "2006-12-17 07:03:31"
- }
- }
-]