• Home
  • History
  • Annotate
  • only in /external/chromium-trace/catapult/third_party/mock/
NameDateSize

..23-Aug-20164 KiB

mock.py23-Aug-201673.8 KiB

README.chromium23-Aug-2016454

README.chromium

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