1 Name: mock 2 URL: https://pypi.python.org/pypi/mock 3 Version: 1.0.1 4 License: BSD 5 6 Description: 7 mock is a library for testing in Python. It allows you to replace parts of 8 your system under test with mock objects and make assertions about how they 9 have been used. 10 11 In Python 3.3 onwards, it is a part of the standard library, available as 12 unittest.mock. 13 14 Local Modifications: 15 Removed everything except for mock.py (including setup script and documentation). 16 17