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
|
Source: python-pretend
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Section: python
Priority: optional
Build-Depends:
debhelper-compat (= 13),
dh-sequence-python3,
python3-all,
python3-setuptools,
Standards-Version: 4.7.0
Testsuite: autopkgtest-pkg-python
Rules-Requires-Root: no
Homepage: https://github.com/alex/pretend
Vcs-Git: https://salsa.debian.org/python-team/packages/python-pretend.git
Vcs-Browser: https://salsa.debian.org/python-team/packages/python-pretend
Package: python3-pretend
Architecture: all
Depends:
${misc:Depends},
${python3:Depends},
Description: Python library for stubbing (Python 3)
Pretend is a library to make stubbing with Python easier.
.
Stubbing is a technique for writing tests. You may hear the term mixed up with
mocks, fakes, or doubles. Basically a stub is an object that returns pre-canned
responses, rather than doing any computation.
|