On Tue, Jul 22, 2008 at 5:05 AM, James <[EMAIL PROTECTED]> wrote: > > It appears that the password value isn't printed for security reasons. > The problem remains that the form will not validate.
Are you sure you have a test user? Remember, when you run the test suite, you're not using the standard database - you're using a temporary test database which will not contain any users by default. You will need to create a test user before you can log in. Fixtures are one easy way to do this; manually invoking User.objects.create_user() is another. Yours, Russ Magee %-) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---

