1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
Source: python-mock
Section: python
Priority: extra
Maintainer: David Watson <david@kutoken.com>
Build-Depends: debhelper (>= 7.0.50), python-support (>= 0.90), python-setuptools, python
Build-Depends-Indep: python-sphinx, libjs-jquery
Standards-Version: 3.8.3
Homepage: http://www.voidspace.org.uk/python/mock/
Package: python-mock
Architecture: all
Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}
Recommends: libjs-jquery
Provides: ${python:Provides}
Description: Mocking and Testing Library
mock provides a core mock.Mock class that is intended to reduce the
need to create a host of trivial stubs throughout your test suite.
After performing an action, you can make assertions about which methods
/ attributes were used and arguments they were called with. You can
also specify return values and set specific attributes in the normal
way.
|