Ticket #10908: docs.patch
File docs.patch, 671 bytes (added by , 16 years ago) |
---|
-
docs/topics/testing.txt
669 669 user accounts that are valid on your production site will not work 670 670 under test conditions. You'll need to create users as part of the test 671 671 suite -- either manually (using the Django model API) or with a test 672 fixture. 672 fixture. Also remember that user password must be hashed either by 673 using ``set_password()`` or by creating users with 674 ``User.objects.create_user``. 673 675 674 676 .. method:: Client.logout() 675 677