Changelog

0.8.1

0.8.0

0.7.1

  • Fix mockify.matchers.Object matcher to be inequal to reference object if reference object does not have one or more properties listed in matcher

0.7.0

  • An alias to 0.6.5 to fix versioning (new feature was introduced, and wrong version part was increased by mistake)

0.6.5

0.6.4

  • Deprecated code was removed
  • Improved documentation
  • Documentation is now tested by Sphinx
  • Class Registry was renamed to mockify.Session
  • All classes for making mocks were replaced by single generic mockify.mock.Mock class, supported by mockify.mock.MockFactory class
  • New actions introduced (see mockify.actions)
  • New matchers introduced (see mockify.matchers)
  • New assertion errors introduced and improved exception hierarchy (see mockify.exc)
  • Better reporting of expectation location in assertion messages
  • Can now define ordered expectations with mockify.ordered() context manager
  • Can now patch imports using mockify.patched() context manager
  • CI workflow updated + added testing against various Python versions (3.x for now)
  • Many other improvements in the code and the tests

0.5.0

  • Dependency management provided by pipenv
  • Project’s CLI provided by Invoke library
  • Added mockify.mock.Namespace mock class
  • Use Sphinx Read The Docs theme for documentation
  • Class mockify.mock.Object can now be used without subclassing and has API similar to other mock classes
  • Module mockify.helpers (was merged to library core)
  • Module mockify.times (renamed to mockify.cardinality)
  • Module mockify.engine is now available via mockify
  • Modules mockify.mock.function and mockify.mock.object are now merged into mockify.mock

0.4.0

  • Added strategies for dealing with unexpected calls

0.3.1

  • Added frontend for mocking Python objects

0.2.1

  • Updated copyright notice
  • Added description to Alabaster Sphinx theme used for docs
  • Added FunctionFactory mocking utility
  • Changed Registry.assert_satisfied method to allow it to get mock names to check using positional args
  • Script for running tests added (pytest wrapper)
  • Updated copyright.py script and hardcode year the project was started and author’s name

0.1.12

  • First release published to PyPI