Lines Matching refs:Mox
20 """Mox, an object-mocking framework for Python.
22 Mox works in the record-replay-verify paradigm. When you first create
41 # Create Mox factory
42 my_mox = Mox()
150 class Mox(object):
151 """Mox: a factory for creating mock objects."""
159 """Initialize a new Mox."""
752 """Base class for all Mox comparators.
1087 *args: One or more Mox comparators
1359 """Adds Mox cleanup code to any MoxTestBase method.
1374 if mox_obj and isinstance(mox_obj, Mox):
1392 Sets up a "mox" attribute which is an instance of Mox - any mox tests will
1401 self.mox = Mox()