Skip to main content

a collection of helpers for the unittest module

Project description

https://cdn.rawgit.com/jeremyarr/younit/2275cf7a/docs/_static/logo_full.png https://tactile.com.au/jenkins/buildStatus/icon?job=younit1 https://img.shields.io/pypi/l/younit.svg https://tactile.com.au/badge-server/coverage/younit1 https://img.shields.io/pypi/pyversions/younit.svg https://img.shields.io/pypi/status/younit.svg https://img.shields.io/pypi/implementation/younit.svg

younit is a collection of helpers for the unittest module.

Helpers

I want to

Helpers to Use

Test coroutines

@asyncio_test

Mock out coroutines

AsyncMock(), @asyncio_test

Print the name of a test before running it

@test_name

Fail a test if it hangs

@set_test_hang_alarm, @clear_test_hang_alarm, or @test_hang_alarm

Close all threads associated with a test

@close_all_threads

Get It Now

$ pip install younit

Examples

Testing and mocking coroutines:

class MyTestCase(unittest.TestCase):
    async def async_setUp(self):
        pass

    async def async_tearDown(self):
        pass

    @asyncio_test
    async def test_this(self):
        x = AsyncMock()
        await x()
        x.mock.assert_called_once()

Setting up test hang alarms:

class MyTestCase(unittest.TestCase):
    @set_test_hang_alarm
    def setUp(self):
        pass

    @clear_test_hang_alarm
    def tearDown(self):
        pass

More at https://younit.readthedocs.io

License

MIT licensed. See the bundled LICENSE file for more details. ~

Changelog

0.1.0 (2017-07-21)

  • Initial release

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

younit-0.1.0.tar.gz (4.8 kB view hashes)

Uploaded Source

Built Distribution

younit-0.1.0-py2.py3-none-any.whl (5.8 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page