¡@

Home 

python Programming Glossary: unittest2

Python nose2 vs. nose vs. unittest [closed]

http://stackoverflow.com/questions/16187314/python-nose2-vs-nose-vs-unittest

by zope.testing under a different name . Both nose and unittest2 renamed to plain unittest in Python 2.7 and Python 3 provide.. provides. There was a proposal to add a plugin system to unittest2 but as far as I know that was not adopted. Full disclosure I..

Running unittest with typical test directory structure

http://stackoverflow.com/questions/1896918/running-unittest-with-typical-test-directory-structure

the unittest module in Python 2.7 which is backported as unittest2 for Python 2.6 and earlier now has test discovery built in so..

Architecting from scratch in Python: what to use?

http://stackoverflow.com/questions/3143115/architecting-from-scratch-in-python-what-to-use

Python has unittest as part of it's standard library and unittest2 is in python 2.7 but backported to previous versions too http.. to previous versions too http pypi.python.org pypi unittest2 0.1.4 . Some people also like Nose http code.google.com p python..

unittest colored output

http://stackoverflow.com/questions/5203633/unittest-colored-output

colored output I use unittest actually unittest2 for Python testing together with Python Mock for mocking objects..

How to properly use unit-testing's assertRaises() with NoneType objects?

http://stackoverflow.com/questions/6103825/how-to-properly-use-unit-testings-assertraises-with-nonetype-objects

another way beside the one given until now is to use unittest2 which is a back port of unittest new feature to python2.6 and.. SkipTest test discovery ... of unittest so I intend to use unittest2 as much as I can. I advise to do the same because there is a..