Metadata-Version: 2.1
Name: charms.unit_test
Version: 1.0.1
Summary: Helpers for unit-testing reactive-style Juju Charms
Home-page: https://github.com/juju-solutions/charms.unit_test
Author: Cory Johns
Author-email: johnsca@gmail.com
License: Apache License 2.0
Description: # charms.unit\_test
        
        This library provides helpers for unit testing reactive style charms.
        
        
        ## Usage
        
        This library is intended to be used with pytest and `conftest.py`, which
        allows for mocking out imports prior to the test code being loaded.
        
        Example `conftest.py`:
        
        ```python
        from charms.unit_test import patch_reactive, patch_module
        
        # patch common things needed by any reactive charm
        patch_reactive()
        
        # patch some other module that the charm expects to be there
        patch_module('charms.leadership')
        ```
        
        With this, your test code can import the charm's reactive code which
        depends on charms.reactive and charmhelpers without error, and the
        libraries will be mocked out so that you can call your handlers
        directly to test them.
        
Platform: UNKNOWN
Description-Content-Type: text/markdown
