Hello,

I am working on adding unit testing to my code and the snag I have
come across is in regards to unit fields.

When user.is_anonymous() I have a hidden field sender_id = 1 which is
easy to test by:

from django.test.client import Client

c = Client()
c.post('sender_id': '1', 'post', '<data>')

but when setting up unit tests for the form when a user is logged in,
I am not clear on how to use the hidden fields.

the example would be using the:

c.login(username = 'user', password = 'secret')

I found a snippet of code using Twill and django:
http://www.djangosnippets.org/snippets/665/

is this the best way? Or does django have something built in for this
purpose?

Thanks in advanced,
Jason
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to