Thanks, it does but this is a bad test methodology. is_valid() verifies the entire form and there is no way of knowing in the test if the validation is failing because of other reasons or the specific one I (think) I'm testing.
I guess the broader question then is when is cleaned_data established? It appears transient since if I call the clean_xxx() method after calling is_valid() then I still get the attriberr. ---Rick On Nov 4, 2008, at 5:10 AM, Dan Fairs wrote: > >> Running the test causes a splash of barf that says: >> >> AttributeError: 'TheFormClass' object has no attribute 'cleaned_data' >> > > Try calling form.is_valid() (which should in addition return whether > the validation framework as a whole thought the form was valid). This > should invoke your clean_ method. > > Cheers, > Dan > > -- > Dan Fairs <[EMAIL PROTECTED]> | http://www.fezconsulting.com/ > > > > --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

