2011-11-13 09:38:14 +01:00
|
|
|
# HOW TO EDIT THIS FILE:
|
2013-11-22 08:29:22 +01:00
|
|
|
# The "handy ruler" below makes it easier to edit a package description.
|
|
|
|
# Line up the first '|' above the ':' following the base package name, and
|
|
|
|
# the '|' on the right side marks the last column you can put a character in.
|
|
|
|
# You must make exactly 11 lines for the formatting to be correct. It's also
|
|
|
|
# customary to leave one space after the ':' except on otherwise blank lines.
|
2011-11-13 09:38:14 +01:00
|
|
|
|
|
|
|
|-----handy-ruler------------------------------------------------------|
|
2012-06-26 03:44:07 +02:00
|
|
|
mock: mock (implements a Mocking and Testing Library in Python)
|
2011-11-13 09:38:14 +01:00
|
|
|
mock:
|
2012-06-26 03:44:07 +02:00
|
|
|
mock: mock is a Python module that provides a core Mock class. It removes
|
2011-11-13 09:38:14 +01:00
|
|
|
mock: the need to create a host of stubs throughout your test suite.
|
|
|
|
mock: The mock module also provides a patch() decorator that handles
|
|
|
|
mock: patching module and class level attributes within the scope of a
|
|
|
|
mock: test, along with sentinel for creating unique objects.
|
|
|
|
mock: mock is tested on Python versions 2.4-2.7 and Python 3.
|
|
|
|
mock:
|
|
|
|
mock: Homepage: http://www.voidspace.org.uk/python/mock/
|
|
|
|
mock:
|