<br><br><div class="gmail_quote">On Fri, Jul 22, 2011 at 9:06 PM, Herman Sheremetyev <span dir="ltr">&lt;<a href="mailto:herman@swebpage.com">herman@swebpage.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
Both unittest and nose are test runners. Unittest is part of Python&#39;s<br>
standard library and is pretty bare-bones. Nose is a third party<br>
library that extends unittest to make running tests easier and move<br>
convenient -- no need to have all your tests in a unittest.TestClass<br>
for example, and there are lots of useful plugins for coverage and<br>
profiling, etc. Anything supported by unittest should automatically be<br>
supported by nose since nose has a superset of features, but I don&#39;t<br>
know if I&#39;d call them complimentary exactly..<br>
<br>
HTH,<br>
<br>
-Herman<br></blockquote></div><br>Thanks Herman for your answer.<br>If I had to take a python class covering barebones testing and a taste of TDD which would you advise?<br>