Tagged Questions

3
votes
1answer
142 views

How can I do such a typical unittest?

This is a simple structure in my project: MyAPP--- note--- __init__.py views.py urls.py test.py models.py ...
2
votes
3answers
812 views

How to unittest Session timeout in Django

I have a requirement something like this: As soon as the user signsup(and will be in the waiting state untill he confirms his email address), a session variable is set something like ...
1
vote
3answers
148 views

Django UrlResolver, adding urls at runtime for testing

I'm looking to do some tests and I'm not really familiar with the URLResolver quite yet but I'd like to solve this issue quickly. In a TestCase, I'd like to add a URL to the resolver so that I can ...
0
votes
2answers
25 views

Django loading fixtures (not from installed apps) in tests

Is there a way to load fixtures that do NOT reside in appname/fixtures? According to django docs, fixtures have to be in directory of INSTALLED_APPS
0
votes
1answer
52 views

Error in email sending during testcase in django?

I have a simple django application which allows users to add a new user.Whenever we created a new user,a mail will send to that respective email-id (what we gave while creating a new user).If i have ...