An interesting variation I have encountered. I have custom managers
for my model classes in models.py. If I add doctests to the custom
manager methods, they run. But if I then add doctests to any model
methods, none of the doctests in models.py run -- neither the doctests
for the custom manager methods nor those for the model method
doctests.

--David

On May 12, 6:07 pm, davenaff <[EMAIL PROTECTED]> wrote:
> Over the weekend I ran into problems gettingdocteststo run.  I found
> that imports in other modules were causing the model classes to not be
> recognized by _doctest:
>
> http://groups.google.com/group/django-users/browse_thread/thread/10f8...
>
> I ran out of time before I was able to determine the ultimate cause of
> the problem, but put this hack in place:
> I changed line 895 of _doctest from:
>  return module.__name == object.__module__
> to:
>  return module.__name__.find(object.__module__) >=0
>
> Again, this is a hack, but I wanted to put it into public record in
> case others run into the same problem and need a quick fix (or if
> someone can suggest the proper solution).
>
> Dave
--~--~---------~--~----~------------~-------~--~----~
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