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
|
Source: doublex
Section: python
Priority: optional
Maintainer: David Villa Alises <David.Villa@gmail.com>
Uploaders: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
Build-Depends:
debhelper (>= 7.0.50),
python-all (>= 2.6.6-3),
python-setuptools (>= 0.6b3),
python3-all,
python3-setuptools
Standards-Version: 3.9.4
X-Python-Version: >= 2.6
Homepage: https://bitbucket.org/DavidVilla/python-doublex
Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/doublex/trunk/
Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/doublex/trunk/
Package: python-doublex
Architecture: all
Depends: ${misc:Depends}, ${python:Depends}, python-hamcrest
Replaces: python-pydoubles
Description: test doubles framework for Python 2
doublex is a test doubles framework for the Python unittest module. It may be
used as a effective tool to perform Test Driven Development.
.
It provides stubs, spies, proxy-spies, mocks, individual methods, properties,
etc. Methods support observer attachment or delegate return value generation
to iterables, generators or even third party functions. A special double
factory (called Mimic) allows one to create doubles inheriting original class
superclasses. This provides replacements for the original instances even for
code performing explicit type checking.
.
doublex supersedes pyDoubles and it provides its legacy API as a wrapper.
Package: python3-doublex
Architecture: all
Depends: ${misc:Depends}, ${python3:Depends}, python3-hamcrest
Description: test doubles framework for Python 3
doublex is a test doubles framework for the Python unittest module. It may be
used as a effective tool to perform Test Driven Development.
.
It provides stubs, spies, proxy-spies, mocks, individual methods, properties,
etc. Methods support observer attachment or delegate return value generation
to iterables, generators or even third party functions. A special double
factory (called Mimic) allows one to create doubles inheriting original class
superclasses. This provides replacements for the original instances even for
code performing explicit type checking.
# Local Variables:
# coding: utf-8
# fill-column: 79
# mode: flyspell
# ispell-local-dictionary: "american"
# End:
|