File: control

package info (click to toggle)
python-mox 0.7.8-5
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 388 kB
  • sloc: python: 2,950; makefile: 17; sh: 5
file content (28 lines) | stat: -rw-r--r-- 1,050 bytes parent folder | download
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
Source: python-mox
Section: python
Priority: optional
Maintainer: Iustin Pop <iustin@debian.org>
Build-Depends: debhelper-compat (= 13),
 python3, dh-python, python3-six,
Standards-Version: 4.5.1
Homepage: https://pymox.readthedocs.io/en/latest/index.html
Vcs-Browser: https://salsa.debian.org/debian/python-mox
Vcs-Git: https://salsa.debian.org/debian/python-mox.git
Rules-Requires-Root: no

Package: python3-mox
Architecture: all
Depends: ${python3:Depends}, ${misc:Depends}, python3-six
Provides: ${python3:Provides}
Description: mock object framework for Python 3
 Mox is a mock object framework for Python that simplifies the writing of
 unittests.
 .
 Mox will make mock objects for you, so you don't have to create your
 own. It mocks the public/protected interfaces of Python objects. You set
 up your mock objects expected behavior using a domain specific language
 (DSL), which makes it easy to use, understand, and refactor.
 .
 It is based on EasyMock, a Java mock object framework.
 .
 This package contains the Python 3 module for mox.