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
|
Source: python-mockito
Section: python
Priority: optional
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Uploaders: Fabrice BAUZAC-STEHLY <noon@mykolab.com>
Build-Depends:
debhelper-compat (= 13),
dh-python,
python3-all,
python3-setuptools,
python3-sphinx,
texinfo,
python3-pytest,
python3-pytest-asyncio,
python3-numpy,
Standards-Version: 4.6.2
Testsuite: autopkgtest-pkg-pybuild
Homepage: https://github.com/kaste/mockito-python
Rules-Requires-Root: no
Vcs-Browser: https://salsa.debian.org/python-team/packages/python-mockito
Vcs-Git: https://salsa.debian.org/python-team/packages/python-mockito.git
Package: python3-mockito
Architecture: all
Depends: ${misc:Depends}, ${python3:Depends}
Description: Spying framework for Python
This is a spying framework for Python, similar to Java's Mockito.
For example:
.
when(os.path).exists('/foo').thenReturn(True)
.
This package contains the Python3 library.
Package: python-mockito-doc
Architecture: all
Section: doc
Depends: ${misc:Depends}, ${sphinxdoc:Depends}
Built-Using: ${sphinxdoc:Built-Using}
Multi-Arch: foreign
Description: Spying framework for Python - documentation
This is a spying framework for Python, similar to Java's Mockito.
For example:
.
when(os.path).exists('/foo').thenReturn(True)
.
This package contains the HTML documentation.
|