Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I completed my first proper project in Python and now my task is to write tests for it.

Since this is the first time I did a project, this is the first time I would be writing tests for it.

The question is, how do I start? I have absolutely no idea. Can anyone point me to some documentation/ tutorial/ link/ book that I can use to start with writing tests (and I guess unit testing in particular)

Any advice will be welcomed on this topic.

share|improve this question
what have you found so far? why did it fail to please or inform? – msw Jul 30 '10 at 12:14
@msw: I don't know how I can add tests in my code and how it would benefit me. The unittest module in the stdlib was what I was looking for. – user225312 Jul 30 '10 at 12:15

7 Answers

up vote 34 down vote accepted

This is a tutorial for test-driven development in Python. Now, like Justin said, it's better to write your tests before or during coding, and that's how this tutorial assumes you're working, but I still think you'll find it helpful.

And here's part 2.

share|improve this answer
1  
Thanks. I intend to read up. – user225312 Jul 30 '10 at 12:17
2  
Just a note. In recent version of Python, some of the assertions used in the tutorial have been deprecated in favor of new ones. For example, failUnless is now assertTrue. This is documented in unittest documentation (see table: docs.python.org/2.7/library/unittest.html#deprecated-aliases) – bvukelic Nov 18 '12 at 20:00
Links are unfortunately dead :( – Brandon Bertelsen yesterday

The docs for unittest would be a good place to start.

Also, it is a bit late now, but in the future please consider writing unit tests before or during the project itself. That way you can use them to test as you go along, and (in theory) you can use them as regression tests, to verify that your code changes have not broken any existing code. This would give you the full benefit of writing test cases :)

share|improve this answer
1  
Aah! I had no idea that it was to be done along the project. I will take care in future. Thanks for the link though. – user225312 Jul 30 '10 at 12:14

The free Python book Dive Into Python has a chapter on unit testing that you might find useful.

If you follow modern practices you should probably write the tests while you are writing your project, and not wait until your project is nearly finished.

Bit late now, but now you know for next time. :)

share|improve this answer
3  
Well, I had no idea about that. Anyways, let it be next time then :) – user225312 Jul 30 '10 at 12:16
This is a great resource. +10 if I could for the link. Using roman numberals and all there potential complications in a detailed and thoughtful manner is a great way to explain potential caveats found during unittesting. – Brandon Bertelsen yesterday

unittest comes with the standatd library, but I would recomend you nosetests.

"nose extends unittest to make testing easier."

I would also recomend you pylint

"analyzes Python source code looking for bugs and signs of poor quality."

share|improve this answer
2  
Your nosetests link is obsolete. It seems the new location is: nose.readthedocs.org/en/latest – odigity Jan 30 at 18:01

If you're brand new to using unittests, the simplest approach to learn is often the best. On that basis along I recommend using py.test rather than the default unittest module.

Consider these two examples, which do the same thing:

Example 1:

import unittest

class LearningCase(unittest.TestCase):
    def test_starting_out(self):
        self.assertEqual(1, 1)

def main():
    unittest.main()

if __name__ == "__main__":
    main()

Example 2:

def test_starting_out():
    assert 1 == 1

Assuming that both files are named test_unittesting.py, how do we run the tests?

Example 1

$ cd /path/to/dir/
$ python test_unittesting.py

Example 2:

$ cd /path/to/dir/
$ py.test
share|improve this answer
Thanks for the is concise answer. – user225312 Jul 30 '10 at 15:53

As others already replied, it's late to write unit tests, but not too late. The question is whether your code is testable or not. Indeed, it's not easy to put existing code under test, there is even a book about this : "Working Effectively with Legacy Code".

Now writing the unit tests or not is your call. You just need to be aware that it could be a tedious task. You might tackle this to learn unit-testing or consider writing acceptance (end-to-end) tests first, and start writing unit tests when you'll change the code or add new feature to the project.

share|improve this answer
1  
+1 for "Working Effectivly with Legacy Code". It's all about code that don't have tests. – David Jul 30 '10 at 13:21

nosetests is brilliant solution for unit-testing in python. It supports both unittest based testcases and doctests, and gets you started with it with just simple config file.

share|improve this answer
Your nosetests link is obsolete. It seems the new location is: nose.readthedocs.org/en/latest – odigity Jan 30 at 18:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.