Ticket #16183: auth_permissions_test_fix_20110609.diff

File auth_permissions_test_fix_20110609.diff, 2.0 KB (added by Nikolay Zakharov, 13 years ago)

Initial patch

  • django/contrib/auth/tests/permissions.py

     
    3333        create_permissions(contenttypes_models, [], verbosity=0)
    3434
    3535        stderr = StringIO()
    36         call_command('loaddata', 'test_permissions.json',
     36        call_command('loaddata', 'permissionstestdata.json',
    3737                     verbosity=0, commit=False, stderr=stderr)
    3838        self.assertEqual(stderr.getvalue(), '')
  • django/contrib/auth/fixtures/permissionstestdata.json

     
    11[
    22    {
    3         "pk": 5,
     3        "pk": 4,
    44        "model": "contenttypes.contenttype",
    55        "fields": {
    66            "model": "contenttype",
     
    1818        }
    1919    },
    2020    {
    21         "pk": 8,
     21        "pk": 7,
    2222        "model": "contenttypes.contenttype",
    2323        "fields": {
    2424            "model": "logentry",
     
    2727        }
    2828    },
    2929    {
    30         "pk": 4,
    31         "model": "contenttypes.contenttype",
    32         "fields": {
    33             "model": "message",
    34             "name": "message",
    35             "app_label": "auth"
    36         }
    37     },
    38     {
    3930        "pk": 1,
    4031        "model": "contenttypes.contenttype",
    4132        "fields": {
     
    4536        }
    4637    },
    4738    {
    48         "pk": 6,
     39        "pk": 5,
    4940        "model": "contenttypes.contenttype",
    5041        "fields": {
    5142            "model": "session",
     
    5445        }
    5546    },
    5647    {
    57         "pk": 7,
     48        "pk": 6,
    5849        "model": "contenttypes.contenttype",
    5950        "fields": {
    6051            "model": "site",
     
    313304            "date_joined": "2010-11-19 06:26:59"
    314305        }
    315306    }
    316 ]
    317  No newline at end of file
     307]
Back to Top