Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: python312-testfixtures | Distribution: openSUSE Tumbleweed |
Version: 8.3.0 | Vendor: openSUSE |
Release: 2.2 | Build date: Tue Oct 1 13:13:06 2024 |
Group: Unspecified | Build host: reproducible |
Size: 487724 | Source RPM: python-testfixtures-8.3.0-2.2.src.rpm |
Packager: http://bugs.opensuse.org | |
Url: https://github.com/Simplistix/testfixtures | |
Summary: A collection of helpers and mock objects for unit tests and doc tests |
TestFixtures is a collection of helpers and mock objects that are useful when writing unit tests or doc tests. If you're wondering why "yet another mock object library", testing is often described as an art form and as such some styles of library will suit some people while others will suit other styles. This library contains common test fixtures the author found himself repeating from package to package and so decided to extract them into their own library and give them some tests of their own!
MIT
* Tue Oct 01 2024 Daniel Garcia <[email protected]> - Make Django build-requirement conditional and disable by default for SUSE:SLFO:Main, bsc#1231124 * Thu Sep 26 2024 Steve Kowalik <[email protected]> - Add patch support-python-313.patch: * Support Python 3.13 AttributeError message changes. * Sun Jun 30 2024 Dirk Müller <[email protected]> - update to 8.3.0: * :class:`ShouldRaise` now supports :class:`ExceptionGroup`. * Fixed bug where :func:`~testfixtures.comparison.compare_generator` did not respect strict=True. * Fixed bug in the type annotations for :class:`ShouldRaise` and :func:`~testfixtures.comparison.compare_exception`. * :class:`LogCapture` will now raise an exception if closed while still installed. This can be a source of particularly confusing bugs. * Wed May 08 2024 Steve Kowalik <[email protected]> - Update to 8.2.0: * The strict option is now correctly respected when comparing nested objects. * When comparing datetime.datetime or datetime.time instances, if the fold is the only thing that's different, it's now shown in the output. * A more detailed exception is now raised when resolving a replacement doesn't give what's expected. * Replacement of methods on instances is now prevented when strict=True. * An exception is now raised when mocking and the original is not in the __dict__ of its containing objects. * Fix bug where replacement of methods on subclasses failed when using Replacer.on_class. * Implement strict comparison as an option for datetime.datetime and datetime.time. * Retire zope.component helpers. * Support bytes in popen.MockPopen commands. * Allow TempDirectory instances to be traversed as pathlib.Path objects. * Use the system default encoding where possible in TempDirectory. * Add TempDirectory option to manage current working directory. * Allow string class attributes to be replaced with Replacer and friends. * Fix nasty bug meaning some Replacer.on_class and Replacer.in_module replacements weren't restored. * Allow an alternative separator to be used for traversal during replacement with Replacer and friends. * Officially support Python 3.12. * Drop support Python 3.6. - Add multibuild to break a cycle. - Drop patch path-comparsion-312.patch, included upstream. * Mon Dec 11 2023 ecsos <[email protected]> - Add %{?sle15_python_module_pythons} * Wed Nov 29 2023 Steve Kowalik <[email protected]> - Update to 7.2.2: * Fix bug in support for :class:`os.PathLike` arguments to :class:`popen.MockPopen`. * Added missing support for :class:`os.PathLike` arguments to :class:`popen.MockPopen`. * Add ``order_matters`` parameter to :class:`ShouldWarn`. * Implement new IDE and static-analysis ways of :doc:`mocking <mocking>` including additional parameters to :meth:`~Replacer.replace` along with the :any:`replace_on_class`, :any:`replace_in_module` and :any:`replace_in_environ` context managers. - Add patch path-comparsion-312.patch: * Compare paths string-wise, due to Python 3.12 changes. - Switch to autosetup and pyproject macros. - Remove now unneeded Python 3.6 special-casing. * Tue Dec 13 2022 Yogalakshmi Arunachalam <[email protected]> - Update to 7.0.4 * Remove py.typed file: neither mypy nor testfixtures are ready for this file to be present. * Wed Nov 09 2022 Yogalakshmi Arunachalam <[email protected]> - Update to 7.0.3 (3 Nov 2022) * Further bugfixes around self-referential datastructures and :func:`compare`. - Update to 7.0.2 (1 Nov 2022) * Reinstate support for self-referential data structures in :func:`compare`. The new implementation provides more clarity about what's going on and also ignores more immutable data types. - Update to 7.0.1 (1 Nov 2022) * Remove non-functional support for self-referential data structures in :func:`compare`. The functionality didn't work but did cause erroneous reported equality of values in dictionaries that were actually not equal. * Tue Oct 04 2022 Daniel Garcia <[email protected]> - Remove testfixtures-sybil3-py310.patch, it's included in upstream now. - Update to 7.0.0 * Refresh documentation. * Add type annotations. * Drop support for Python 2. The minimum supported Python version is now 3.6. * Sybil 3 is now the minimum supported version if you use :class:`~.sybil.FileParser`. * Rename and refactor the date and time mocks, they are now :any:`mock_date`, :any:`mock_datetime` and :any:`mock_time`. :func:`test_date`, :func:`test_datetime` and :func:`test_time` are still present as aliases but are now deprecated. * Add :meth:`TempDirectory.as_string`, :meth:`TempDirectory.as_path` and :meth:`TempDirectory.as_local`. :meth:`TempDirectory.getpath` is now deprecated. * :class:`TempDirectory` can now be used to wrap existing directories. * Fixed a bug where :any:`OutputCapture.captured` returned bytes instead of a string with fd=True. * The deprecated strict option to :class:`Comparison` has been removed, use the partial option instead. * The deprecated :meth:`TempDirectory.check`, :meth:`TempDirectory.check_dir` and :meth:`TempDirectory.check_all` methods have been removed. - 6.18.5 (1 Mar 2022) * Fix bug in detection of Mock backport. - 6.18.4 (25 Feb 2022) * Ensure compatibility with Sybil 2 and Sybil 3 along with pytest 6 and pytest 7. * Sun Dec 26 2021 Ben Greiner <[email protected]> - Replace testfixtures-pr167-sybil3.patch by testfixtures-sybil3-py310.patch -- gh#simplistix/testfixtures#167 - Don't test Django on python36: Django 4 dropped support for Python < 3.8 * Tue Dec 21 2021 Ben Greiner <[email protected]> - Add testfixtures-pr167-sybil3.patch * gh#simplistix/testfixtures#167 * Thu Oct 07 2021 Ben Greiner <[email protected]> - update to 6.18.3 * Fix bug when using :func:`compare` on two regular expressions that have very long patterns. * Fix bug that meant :class:`LogCapture` didn't preserve or provide a clean testing environment for filters. * Fix bug when showing differences between mappings found by :func:`compare` when mismatching values contained the same number more than once. * Add support for lazy resolution of prefix and suffix when using :func:`compare`. - Drop appease-django-320.patch merged upstream - Drop unresolvable Python 2 build * Sun May 09 2021 Dirk Müller <[email protected]> - update to 6.17.1 - Fix bug where bug where duplicated entries in an ordered but partial :class:`SequenceComparison` could result in a failed match. * Wed Apr 28 2021 Steve Kowalik <[email protected]> - Add appease-django-320.patch: * Upstream patch to avoid a test failure with building with Django 3.2
/usr/lib/python3.12/site-packages/testfixtures /usr/lib/python3.12/site-packages/testfixtures-8.3.0.dist-info /usr/lib/python3.12/site-packages/testfixtures-8.3.0.dist-info/INSTALLER /usr/lib/python3.12/site-packages/testfixtures-8.3.0.dist-info/LICENSE.txt /usr/lib/python3.12/site-packages/testfixtures-8.3.0.dist-info/METADATA /usr/lib/python3.12/site-packages/testfixtures-8.3.0.dist-info/RECORD /usr/lib/python3.12/site-packages/testfixtures-8.3.0.dist-info/REQUESTED /usr/lib/python3.12/site-packages/testfixtures-8.3.0.dist-info/WHEEL /usr/lib/python3.12/site-packages/testfixtures-8.3.0.dist-info/top_level.txt /usr/lib/python3.12/site-packages/testfixtures/__init__.py /usr/lib/python3.12/site-packages/testfixtures/__pycache__ /usr/lib/python3.12/site-packages/testfixtures/__pycache__/__init__.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/testfixtures/__pycache__/__init__.cpython-312.pyc /usr/lib/python3.12/site-packages/testfixtures/__pycache__/comparison.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/testfixtures/__pycache__/comparison.cpython-312.pyc /usr/lib/python3.12/site-packages/testfixtures/__pycache__/compat.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/testfixtures/__pycache__/compat.cpython-312.pyc /usr/lib/python3.12/site-packages/testfixtures/__pycache__/datetime.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/testfixtures/__pycache__/datetime.cpython-312.pyc /usr/lib/python3.12/site-packages/testfixtures/__pycache__/django.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/testfixtures/__pycache__/django.cpython-312.pyc /usr/lib/python3.12/site-packages/testfixtures/__pycache__/logcapture.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/testfixtures/__pycache__/logcapture.cpython-312.pyc /usr/lib/python3.12/site-packages/testfixtures/__pycache__/mock.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/testfixtures/__pycache__/mock.cpython-312.pyc /usr/lib/python3.12/site-packages/testfixtures/__pycache__/outputcapture.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/testfixtures/__pycache__/outputcapture.cpython-312.pyc /usr/lib/python3.12/site-packages/testfixtures/__pycache__/popen.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/testfixtures/__pycache__/popen.cpython-312.pyc /usr/lib/python3.12/site-packages/testfixtures/__pycache__/replace.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/testfixtures/__pycache__/replace.cpython-312.pyc /usr/lib/python3.12/site-packages/testfixtures/__pycache__/resolve.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/testfixtures/__pycache__/resolve.cpython-312.pyc /usr/lib/python3.12/site-packages/testfixtures/__pycache__/rmtree.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/testfixtures/__pycache__/rmtree.cpython-312.pyc /usr/lib/python3.12/site-packages/testfixtures/__pycache__/shouldraise.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/testfixtures/__pycache__/shouldraise.cpython-312.pyc /usr/lib/python3.12/site-packages/testfixtures/__pycache__/shouldwarn.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/testfixtures/__pycache__/shouldwarn.cpython-312.pyc /usr/lib/python3.12/site-packages/testfixtures/__pycache__/sybil.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/testfixtures/__pycache__/sybil.cpython-312.pyc /usr/lib/python3.12/site-packages/testfixtures/__pycache__/tempdirectory.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/testfixtures/__pycache__/tempdirectory.cpython-312.pyc /usr/lib/python3.12/site-packages/testfixtures/__pycache__/twisted.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/testfixtures/__pycache__/twisted.cpython-312.pyc /usr/lib/python3.12/site-packages/testfixtures/__pycache__/utils.cpython-312.opt-1.pyc /usr/lib/python3.12/site-packages/testfixtures/__pycache__/utils.cpython-312.pyc /usr/lib/python3.12/site-packages/testfixtures/comparison.py /usr/lib/python3.12/site-packages/testfixtures/compat.py /usr/lib/python3.12/site-packages/testfixtures/datetime.py /usr/lib/python3.12/site-packages/testfixtures/django.py /usr/lib/python3.12/site-packages/testfixtures/logcapture.py /usr/lib/python3.12/site-packages/testfixtures/mock.py /usr/lib/python3.12/site-packages/testfixtures/outputcapture.py /usr/lib/python3.12/site-packages/testfixtures/popen.py /usr/lib/python3.12/site-packages/testfixtures/replace.py /usr/lib/python3.12/site-packages/testfixtures/resolve.py /usr/lib/python3.12/site-packages/testfixtures/rmtree.py /usr/lib/python3.12/site-packages/testfixtures/shouldraise.py /usr/lib/python3.12/site-packages/testfixtures/shouldwarn.py /usr/lib/python3.12/site-packages/testfixtures/sybil.py /usr/lib/python3.12/site-packages/testfixtures/tempdirectory.py /usr/lib/python3.12/site-packages/testfixtures/twisted.py /usr/lib/python3.12/site-packages/testfixtures/utils.py /usr/lib/python3.12/site-packages/testfixtures/version.txt /usr/share/doc/packages/python312-testfixtures /usr/share/doc/packages/python312-testfixtures/README.rst /usr/share/doc/packages/python312-testfixtures/api.txt /usr/share/doc/packages/python312-testfixtures/changes.txt /usr/share/doc/packages/python312-testfixtures/comparing.txt /usr/share/doc/packages/python312-testfixtures/datetime.txt /usr/share/doc/packages/python312-testfixtures/development.txt /usr/share/doc/packages/python312-testfixtures/django.txt /usr/share/doc/packages/python312-testfixtures/exceptions.txt /usr/share/doc/packages/python312-testfixtures/files.txt /usr/share/doc/packages/python312-testfixtures/index.txt /usr/share/doc/packages/python312-testfixtures/installation.txt /usr/share/doc/packages/python312-testfixtures/license.txt /usr/share/doc/packages/python312-testfixtures/logging.txt /usr/share/doc/packages/python312-testfixtures/mocking.txt /usr/share/doc/packages/python312-testfixtures/popen.txt /usr/share/doc/packages/python312-testfixtures/streams.txt /usr/share/doc/packages/python312-testfixtures/twisted.txt /usr/share/doc/packages/python312-testfixtures/utilities.txt /usr/share/doc/packages/python312-testfixtures/warnings.txt /usr/share/licenses/python312-testfixtures /usr/share/licenses/python312-testfixtures/LICENSE.txt
Generated by rpm2html 1.8.1
Fabrice Bellet, Sat Dec 14 00:22:06 2024