File: control

package info (click to toggle)
python-mock 0.6.0-1.1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 780 kB
  • ctags: 245
  • sloc: python: 755; makefile: 28
file content (21 lines) | stat: -rw-r--r-- 865 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
Source: python-mock
Section: python
Priority: extra
Maintainer: David Watson <david@kutoken.com>
Build-Depends: debhelper (>= 7.0.50), python-support (>= 0.90), python-setuptools, python
Build-Depends-Indep: python-sphinx, libjs-jquery
Standards-Version: 3.8.3
Homepage: http://www.voidspace.org.uk/python/mock/

Package: python-mock
Architecture: all
Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}
Recommends: libjs-jquery
Provides: ${python:Provides}
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.