I am pleased to announce the release of unittest_expander 0.4.0.

*unittest_expander* is a MIT-licensed Python library that provides
flexible and easy-to-use tools to parameterize your unit tests,
especially those based on `unittest.TestCase`.

The library is compatible with Python 3.11, 3.10, 3.9, 3.8, 3.7, 3.6 and
2.7, and does not depend on any external packages (uses only the Python
standard library).

Simple usage example:

```
import unittest
from unittest_expander import expand, foreach, param

@expand
class TestSomething(unittest.TestCase):
    @foreach(
        'Foo',
        ('Foo', 43),
        param('Foo', spam=44),
        param(foo='Bar', spam=45).label('with bar'),
        empty=param(foo='', spam=46),
    )
    def test_it(self, foo, spam=42, label=None):
        assert foo in ('Foo', 'Bar', '')
        assert 42 <= spam <= 46
        if label == 'with bar':
            assert foo == 'Bar' and spam == 45
        if label == 'empty':
            assert foo == '' and spam == 46
```

This is only a fraction of the possibilities the unittest_expander
library provides.

Homepage: https://github.com/zuo/unittest_expander
PyPI: https://pypi.org/project/unittest-expander/
Documentation: https://unittest-expander.readthedocs.io/en/stable/

Cheers,

Jan Kaliszewski (zuo) <z...@kaliszewski.net>


<P><A 
HREF="https://unittest-expander.readthedocs.io/en/stable/";>unittest_expander 
0.4.0</A>
- a library that provides flexible and easy-to-use tools to parametrize Python 
unit tests.
(16-Mar-23)
_______________________________________________
Python-announce-list mailing list -- python-announce-list@python.org
To unsubscribe send an email to python-announce-list-le...@python.org
https://mail.python.org/mailman3/lists/python-announce-list.python.org/
Member address: arch...@mail-archive.com

Reply via email to