Metadata-Version: 2.4
Name: AssertMixins
Version: 0.3.0
Summary: Library of testing helper mixins.
Author-email: João Jerónimo <joao.jeronimo.pro@gmail.com>
Classifier: Development Status :: 5 - Production/Stable
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# A library of mixin classes containing assertion methods

Example of use:

    # -*- coding: utf-8 -*-
    import unittest, assert_mixins
    
    class SampleTestCase(unittest.TestCase, assert_mixins.ElementaryMixin):
        def test_thing_has_length_two(self):
            self.assertLength([3, 4], 2, msg="Length is different from two!")
