On Wed, Nov 20, 2013 at 5:22 AM, Harjot Mann <
harjotm...@gmail.com> wrote:
> To test my django app I got unittest module in Django but what I am
> notiing that it needs to create tests for the functions in views.py
> file. So I need to do lot of coding. Is there any another way to do
> testing or this is the only best way to do it?
> Is anyone using it or can he/she share their experience. I need it urgently.
>
This is to be expected - in order to effectively test your code, you
need to write effective tests, which takes time.
The more tests you write, the better you will become at writing your
code in ways that make it easier to test.
Cheers
Tom