1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
Source: python-mock
Section: python
Priority: extra
Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
Uploaders: David Watson <david@kutoken.com>,
Michael Fladischer <FladischerMichael@fladi.at>
Build-Depends: debhelper (>= 8),
python-all (>= 2.6.6-3~),
python-setuptools,
python-unittest2,
python3-all (>= 3.1.2-12~),
python3-setuptools
Build-Depends-Indep: libjs-jquery, python-sphinx (>= 1.0.7+dfsg-1~)
Standards-Version: 3.9.5
X-Python-Version: >= 2.4
X-Python3-Version: >= 3.0
Homepage: http://www.voidspace.org.uk/python/mock/
Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/python-mock/trunk/
Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/python-mock/trunk/
Package: python-mock
Architecture: all
Depends: ${misc:Depends}, ${python:Depends}
Suggests: python-mock-doc
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.
Package: python3-mock
Architecture: all
Depends: ${misc:Depends}, ${python3:Depends}
Suggests: python-mock-doc
Description: Mocking and Testing Library (Python3 version)
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.
.
This package contains the Python 3 version of the library.
Package: python-mock-doc
Section: doc
Architecture: all
Depends: ${misc:Depends}, ${sphinxdoc:Depends}
Breaks: python-mock (<< 0.7.2)
Replaces: python-mock (<< 0.7.2)
Description: Mocking and Testing Library (Documentation)
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.
.
This package contains the documentation.
|